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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7db8;
    --accent-color: #f59e0b;
    --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;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

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

.navigation {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

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

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 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: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.cta-primary.large {
    font-size: 18px;
    padding: 18px 45px;
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 122, 0.4);
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.split-image,
.split-content {
    flex: 1;
}

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

.split-content {
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.value-proposition {
    padding: 100px 20px;
    background: var(--bg-white);
}

.value-proposition h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.value-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.services-overview {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-overview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-box {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.trust-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

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

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

.why-now h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.why-now p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.process-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

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

.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 20px;
    min-width: 40px;
}

.process-step p {
    font-size: 16px;
}

.final-cta {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--bg-white);
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    opacity: 0.8;
}

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

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

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

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-cookie:hover,
.btn-cookie-alt:hover {
    opacity: 0.8;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.about-split,
.values-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.philosophy {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.philosophy-grid {
    display: flex;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
}

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

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

.credentials {
    padding: 100px 20px;
    background: var(--bg-white);
}

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

.credentials-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.credential-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

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

.about-cta,
.services-cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-light);
}

.about-cta h2,
.services-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-cta p,
.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-box {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

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

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

.service-detail-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.contact-split {
    display: flex;
    padding: 60px 20px;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 20px;
    text-align: center;
    background: var(--bg-light);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 60px 20px 100px;
}

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

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

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

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

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-details p {
    margin: 0;
    color: var(--text-dark);
}

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .process-split,
    .about-split,
    .values-split,
    .service-detail-box,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .process-split.reverse,
    .values-split.reverse,
    .service-detail-box.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-content {
        padding: 40px 30px;
    }

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

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

    .value-cards,
    .philosophy-grid,
    .credentials-grid {
        flex-direction: column;
    }

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

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

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

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

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

    .hero-content p {
        font-size: 16px;
    }

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

    .value-proposition h2,
    .services-overview h2,
    .final-cta h2 {
        font-size: 28px;
    }
}