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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #8b9da8;
    --accent-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    background: var(--light-bg);
    padding: 4rem 3rem;
}

.split-right {
    background: var(--primary-color);
    overflow: hidden;
}

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

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #234a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.btn-large-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-large-alt:hover {
    background: #c69563;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.trust-indicators {
    background: var(--white);
    padding: 4rem 2rem;
}

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

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

.stat-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--secondary-color);
    font-size: 1rem;
}

.problem-section,
.services-intro,
.benefits-reveal,
.approach-section {
    display: flex;
}

.split-standard .split-left,
.split-standard .split-right {
    flex: 1;
}

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

.content-block {
    padding: 4rem 3rem;
    max-width: 550px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.insight-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-pricing {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #234a5f;
}

.testimonial-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.testimonial-section blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-section cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-section {
    display: flex;
    min-height: 600px;
}

.form-container {
    padding: 4rem 3rem;
    max-width: 550px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-container p {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #234a5f;
}

.urgency-block {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.urgency-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.final-cta {
    background: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: var(--secondary-color);
    line-height: 1.6;
}

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c69563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-primary {
    padding: 0.7rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #c69563;
}

.btn-secondary {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
}

.page-hero {
    display: flex;
    min-height: 500px;
}

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

.page-hero-alt h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.story-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.story-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    display: flex;
}

.team-intro {
    background: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.credentials-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.credentials-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.credential-list {
    list-style: none;
}

.credential-list li {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.1rem;
}

.credential-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail {
    display: flex;
    margin-bottom: 4rem;
}

.service-info {
    padding: 3rem;
    background: var(--light-bg);
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-info ul {
    margin-bottom: 2rem;
}

.service-info li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.form-section-alt {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.form-section-alt h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-section-alt p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-simple p {
    font-size: 1.3rem;
}

.contact-content {
    display: flex;
}

.contact-info-block {
    padding: 4rem 3rem;
    background: var(--light-bg);
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.info-item p {
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.thanks-hero {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.text-center {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps {
    padding: 4rem 2rem;
    background: var(--white);
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.thanks-cta {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.thanks-cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--white);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.updated {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--dark-color);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .problem-section,
    .services-intro,
    .benefits-reveal,
    .form-section,
    .values-section,
    .approach-section,
    .service-detail,
    .contact-content,
    .page-hero {
        flex-direction: column;
    }

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

    .split-left,
    .split-right {
        min-height: 400px;
    }

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

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

    .stat-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .page-hero-alt h1,
    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .insight-block h2,
    .services-pricing h2 {
        font-size: 1.8rem;
    }

    .large-text {
        font-size: 1.1rem;
    }
}