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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2a6fa0;
    --accent-color: #ff6b35;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.intro-section,
.features-alternating {
    background-color: var(--bg-white);
}

.intro-section h2,
.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.services-preview {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

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

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

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

.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.trust-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

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

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

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

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #d1d5db;
}

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

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #d1d5db;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-intro,
.mission-section,
.values-section {
    padding: 80px 20px;
}

.mission-section {
    background-color: var(--bg-light);
    text-align: center;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.centered-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.timeline-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

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

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.expertise-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.expertise-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    width: 350px;
}

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

.expertise-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-content {
    padding: 60px 20px;
}

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

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item .note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.map-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-section > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
}

.directions-section {
    background-color: var(--bg-white);
    padding: 60px 20px;
}

.directions-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    min-width: 280px;
}

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

.direction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
    min-height: 600px;
}

.thanks-section .centered {
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 16px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

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

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-reminder p {
    font-size: 16px;
    line-height: 1.6;
}

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

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

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.legal-page ul {
    margin: 16px 0 16px 30px;
    list-style-type: disc;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .service-grid,
    .trust-grid,
    .expertise-grid {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

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

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

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