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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2d2d2d;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #e67e85;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #f0e8e3;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-lead {
    font-size: 26px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 60px;
    font-weight: 300;
}

.story-container h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    margin: 50px 0;
    border-radius: 4px;
}

.insight-visual {
    background-color: #faf8f6;
    padding: 0;
}

.insight-split {
    display: flex;
    align-items: stretch;
}

.insight-image {
    flex: 1;
    background-color: #e8dfd7;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.insight-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-cards-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 600;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background-color: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e85;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 28px;
    background-color: #e67e85;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #d96b73;
}

.testimonial-inline {
    padding: 90px 40px;
    background-color: #f9f7f5;
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

blockquote {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #e67e85;
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    color: #6a6a6a;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e85;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #e67e85;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: #2d2d2d;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #b0b0b0;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: #e67e85;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

.cookie-content a {
    color: #e67e85;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: #d96b73;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #e0e0e0;
    border: 2px solid #5a5a5a;
}

.btn-cookie.reject:hover {
    background-color: #3a3a3a;
}

.page-hero-small {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
    background-color: #e8dfd7;
}

.page-hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-small .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.page-hero-small .hero-overlay h1 {
    font-size: 48px;
}

.about-story {
    padding: 90px 40px;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-split {
    background-color: #faf8f6;
    padding: 0;
}

.split-container {
    display: flex;
    align-items: stretch;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background-color: #e8dfd7;
}

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

.values-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 600;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #f0e8e3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-intro {
    font-size: 19px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e85;
    font-weight: 700;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #e67e85;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #e67e85;
    color: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #d96b73;
}

.cta-bottom {
    padding: 80px 40px;
    background-color: #f9f7f5;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: #e67e85;
    color: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d96b73;
}

.contact-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 2;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info > p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-cta {
    flex: 1;
    min-width: 280px;
}

.cta-box {
    background-color: #f9f7f5;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-box p {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.legal-page {
    padding: 90px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2a2a2a;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0 20px 25px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #e67e85;
    text-decoration: underline;
    cursor: pointer;
}

.thanks-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-color: #f0e8e3;
}

.thanks-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    color: #ffffff;
}

.thanks-overlay h1 {
    font-size: 48px;
    font-weight: 700;
}

.thanks-content {
    padding: 90px 40px;
    background-color: #ffffff;
}

.thanks-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.thanks-message h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #e67e85;
    border: 2px solid #e67e85;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #e67e85;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu a {
        padding: 18px 40px;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .insight-split,
    .split-container {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cards-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }
}