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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 280px;
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-right {
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-submit {
    background: var(--success-color);
    color: var(--bg-white);
    width: 100%;
}

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

section {
    padding: 80px 0;
}

.trust-indicators {
    background: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.problem-section {
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-section h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.problem-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 20px;
}

.services-showcase {
    background: var(--bg-light);
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 18px;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-content p {
    flex-grow: 1;
    margin-bottom: 24px;
    color: var(--text-light);
}

.service-details {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-duration {
    color: var(--text-light);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-service-select {
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.testimonial-section {
    background: var(--bg-light);
}

.testimonial-section blockquote {
    padding: 40px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-section p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.testimonial-section cite {
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
}

.process-section {
    background: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

.cta-section-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-section-primary h2 {
    color: var(--bg-white);
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section-primary p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.form-section {
    background: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--text-light);
}

.main-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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 {
    flex: 1;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: var(--bg-white);
}

.page-hero {
    background: var(--bg-light);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-content,
.philosophy-section,
.story-section,
.values-section,
.approach-section,
.team-section {
    padding: 80px 0;
}

.about-content h2,
.philosophy-section h2,
.story-section h2,
.values-section h2,
.approach-section h2,
.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-content p,
.story-section p,
.values-section p,
.team-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-section {
    background: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--text-light);
}

.approach-comparison {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.comparison-column {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.comparison-column.highlight {
    background: var(--primary-color);
    color: var(--bg-white);
}

.comparison-column h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.comparison-column.highlight h3 {
    color: var(--bg-white);
}

.comparison-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-column ul li {
    padding-left: 24px;
    position: relative;
}

.comparison-column ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-about,
.cta-contact {
    background: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 0;
}

.cta-about h2,
.cta-contact h2 {
    color: var(--bg-white);
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-about p,
.cta-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    background: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-tagline {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    color: var(--text-light);
}

.meta-item strong {
    color: var(--text-dark);
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-guarantee {
    background: var(--bg-light);
    text-align: center;
}

.service-guarantee h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-guarantee p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-main {
    background: var(--bg-white);
}

.contact-info {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
}

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

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    color: var(--text-dark);
}

.contact-note a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location-section {
    background: var(--bg-light);
}

.location-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.location-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.faq-contact {
    background: var(--bg-white);
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
}

.thanks-hero {
    background: var(--bg-light);
    padding: 100px 0;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.next-steps {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.next-steps ol {
    list-style: decimal;
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.next-steps strong {
    color: var(--primary-color);
}

.thanks-note {
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-testimonial {
    background: var(--bg-white);
}

.legal-page {
    background: var(--bg-white);
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.update-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-page p {
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
}

.legal-page ol {
    list-style: decimal;
}

.legal-page a {
    color: var(--accent-color);
    font-weight: 600;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-dark);
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

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

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

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

    .service-image {
        min-height: 250px;
    }

    .service-content {
        padding: 30px 20px;
    }

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

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

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

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

    .philosophy-grid,
    .faq-grid {
        flex-direction: column;
    }

    .approach-comparison {
        flex-direction: column;
    }

    .service-detail-split {
        flex-direction: column;
    }

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }
}
