:root {
    --primary: #2d5a4a;
    --secondary: #8b9d83;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f7f4;
    --gray: #6b6b6b;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.ad-disclosure {
    background: var(--light);
    padding: 8px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    border-bottom: 1px solid #e0e0e0;
}

header {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 0 0 58%;
    background: var(--light);
    padding: 8rem 4rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-right {
    flex: 0 0 42%;
    position: relative;
    background-color: var(--secondary);
}

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #234539;
    transform: translateY(-2px);
}

.section-offset {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.offset-left {
    flex: 0 0 40%;
    background-color: var(--accent);
}

.offset-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offset-right {
    flex: 0 0 60%;
    padding: 5rem 4rem;
    background: var(--white);
}

.offset-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.offset-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.problem-section {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.problem-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.insight-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.insight-main {
    flex: 0 0 65%;
}

.insight-sidebar {
    flex: 0 0 35%;
    position: relative;
    top: -3rem;
}

.insight-main h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.insight-main p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.insight-sidebar-card {
    background: var(--light);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.insight-sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.insight-sidebar-card ul {
    list-style: none;
}

.insight-sidebar-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    color: var(--dark);
}

.insight-sidebar-card li:last-child {
    border-bottom: none;
}

.testimonial-scattered {
    background: var(--light);
    padding: 5rem 2rem;
    position: relative;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    flex: 0 0 calc(50% - 1rem);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card:nth-child(2) {
    margin-top: 3rem;
}

.testimonial-card:nth-child(3) {
    margin-top: -2rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

.services-reveal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-reveal h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    color: var(--primary);
    font-weight: 700;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    background: var(--white);
    border: 2px solid var(--light);
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 1.5rem;
}

.service-card.selected {
    border-color: var(--primary);
    background: var(--light);
}

.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--light);
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #234539;
}

.disclaimer {
    background: var(--light);
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

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

.footer-section {
    flex: 0 0 calc(25% - 2.25rem);
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: #234539;
}

.cookie-reject {
    background: var(--gray);
    color: var(--white);
}

.cookie-reject:hover {
    background: #555;
}

.about-hero {
    background: var(--light);
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.services-page-header {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background: var(--light);
    padding: 2.5rem;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 350px;
    background-color: var(--secondary);
}

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

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

.service-item-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-item-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

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

.contact-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-info {
    background: var(--light);
    padding: 3rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-item strong {
    color: var(--primary);
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.thanks-page {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--light);
}

.thanks-page h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-page .cta-primary {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 1 0 100%;
    }

    .section-offset,
    .insight-asymmetric {
        flex-direction: column;
    }

    .offset-left,
    .offset-right,
    .insight-main,
    .insight-sidebar {
        flex: 1 0 100%;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-item {
        flex-direction: column !important;
    }

    .service-item-image {
        flex: 1 0 300px;
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-section {
        flex: 0 0 100%;
    }
}
