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

:root {
    --primary-color: #0A3D62;
    --secondary-color: #1E5F8C;
    --accent-color: #E8B44F;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --bg-light: #FAFBFC;
    --bg-dark: #0D1F2D;
    --border-color: #D4D4D4;
    --success-color: #2E7D32;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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;
}

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #D4A043;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.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: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.split-container {
    display: flex;
    min-height: 500px;
}

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

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

.split-left {
    padding: 60px 50px;
}

.split-right {
    background: var(--bg-light);
}

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

.hero-split .split-container {
    min-height: 650px;
}

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

.lead {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.cta-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover,
.btn-secondary:hover,
.btn-submit:hover {
    background: #D4A043;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

.intro-alt {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-alt h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-alt p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.split-features {
    margin: 80px 0;
}

.feature-content {
    padding: 60px 50px;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

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

.services-showcase {
    padding: 100px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 24px;
}

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

.service-body p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 6px;
}

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

.price-note {
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-select-service.selected {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta-inline {
    padding: 80px 20px;
    background: var(--secondary-color);
    color: var(--text-light);
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 28px;
}

.split-trust {
    margin: 80px 0;
}

.trust-content {
    padding: 60px 50px;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: gap 0.3s;
}

.link-arrow::after {
    content: '→';
}

.link-arrow:hover {
    gap: 14px;
}

.testimonials-inline {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 32px;
    background: #fff;
    border-left: 4px solid var(--accent-color);
}

.testimonial-item blockquote {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: #333;
}

.testimonial-item cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #777;
}

.form-section {
    padding: 100px 0;
    background: #fff;
}

.form-visual {
    padding: 60px 50px;
}

.form-visual h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-visual p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-benefits li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.contact-form {
    padding: 40px;
    background: var(--bg-light);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

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

.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--text-light);
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #CCC;
}

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

.footer-col a {
    font-size: 14px;
    color: #CCC;
    transition: color 0.3s;
}

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

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

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

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

.sticky-cta.visible {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #D4A043;
    transform: scale(1.05);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
}

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

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-box .selected-service {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-page {
    padding: 80px 20px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.info-block {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.info-block p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

.about-page,
.services-page {
    padding: 80px 20px;
}

.about-content,
.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h1,
.services-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-content h2,
.services-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content p,
.services-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-content ul,
.services-content ul {
    margin: 24px 0;
    padding-left: 20px;
}

.about-content li,
.services-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    list-style: disc;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
}

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

.legal-content .last-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    list-style: disc;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-left,
    .split-right {
        width: 100%;
    }

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

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

    .services-grid {
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .legal-content {
        padding: 40px 30px;
    }
}

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

    .lead {
        font-size: 16px;
    }

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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