* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.ad-notice {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.intro-story {
    padding: 6rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.cta-inline {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 0.3rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    opacity: 0.7;
}

.services-visual {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.services-visual h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 1.5rem;
    color: #1a1a1a;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #333;
}

.trust-block {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #444;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.credential-item {
    padding: 1rem 1.5rem;
    background-color: #f0f0f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-inline {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

blockquote {
    flex: 1;
    min-width: 300px;
}

blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

cite {
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.7;
}

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-field input,
.form-field textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    padding: 1.2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background-color: #f8f8f8;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.about-content {
    padding: 4rem 2rem;
}

.about-block {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-image {
    flex: 1;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    max-width: 1200px;
    margin: 6rem auto;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f8f8;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.team-section {
    max-width: 900px;
    margin: 6rem auto;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    padding: 0.8rem 1.2rem;
    background-color: #f0f0f0;
    font-size: 0.9rem;
}

.service-pricing {
    margin: 2rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
}

.price-unit {
    font-size: 1rem;
    color: #666;
    margin-left: 0.5rem;
}

.booking-cta {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #f8f8f8;
}

.booking-cta h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

.contact-info {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.thanks-container {
    padding: 10rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.thanks-button {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-button.secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.thanks-button:hover {
    opacity: 0.8;
}

.legal-page {
    padding: 10rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.effective-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: #444;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        top: 1rem;
        border-radius: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .split-visual {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

    .service-cards {
        flex-direction: column;
    }

    .testimonial-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .about-block,
    .about-block.reverse,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .about-image,
    .service-detail-image {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
