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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: #d4c5b0;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    border-color: #999;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 13px;
    color: #666;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 24px;
}

.nav-main a {
    font-size: 16px;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #d4c5b0;
}

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

.hero-image-side {
    flex: 1;
    background-color: #e8dfd3;
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #f9f7f4;
}

.hero-content-side h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2c2c2c;
    color: #ffffff;
    font-size: 17px;
    border-radius: 4px;
    transition: background 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1a1a1a;
}

.intro-narrative {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-narrative h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

.problem-amplification-split {
    background: #f4f1ed;
}

.split-container {
    display: flex;
    min-height: 500px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

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

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-inline {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.cta-inline:hover {
    background: #2c2c2c;
    color: #ffffff;
}

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

.insight-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 350px;
    padding: 32px;
    background: #f9f7f4;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.trust-building-alternate {
    background: #e8e4df;
}

.testimonials-inline {
    padding: 80px 20px;
    background: #2c2c2c;
    color: #ffffff;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: #d4c5b0;
}

.benefits-reveal-split {
    background: #ffffff;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.services-pricing {
    padding: 100px 20px;
    background: #f4f1ed;
}

.services-pricing h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 36px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.service-card .price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.cta-section-full {
    padding: 100px 20px;
    background: #ffffff;
}

.cta-section-full h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section-full > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: #4a4a4a;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #ffffff;
    color: #2c2c2c;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.footer {
    padding: 60px 20px 30px;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #d4c5b0;
}

.footer-col p {
    font-size: 15px;
    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: 15px;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-box .selected-service {
    font-weight: 600;
    color: #2c2c2c;
}

.thanks-box a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.thanks-box a:hover {
    background: #1a1a1a;
}

.about-hero {
    padding: 100px 20px;
    background: #f4f1ed;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-hero {
    padding: 100px 20px;
    background: #f4f1ed;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-list-section {
    padding: 80px 20px;
    background: #ffffff;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 40px;
    background: #f9f7f4;
    border-radius: 8px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.service-detail .price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-hero {
    padding: 80px 20px;
    background: #f4f1ed;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-details {
    max-width: 700px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

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

    .hero-content-side {
        padding: 40px 20px;
    }

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

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

    .split-container.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 40px 20px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}