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

:root {
    --primary: #1a3a52;
    --secondary: #d4af37;
    --accent: #2c5f7c;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e1e8ed;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
}

.nav-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-cta {
    margin-top: auto;
}

.nav-cta-btn {
    display: block;
    text-align: center;
    background: var(--secondary);
    color: var(--primary);
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.main-content {
    margin-left: 280px;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

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

.split-right {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.95), rgba(44, 95, 124, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a3a52" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

.btn-light:hover {
    background: var(--bg-light);
}

.hero-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 480px;
}

.hero-form h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 32px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.section-content,
.section-visual {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

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

.section-visual {
    background: var(--bg-light);
    position: relative;
}

.section-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrapper {
    max-width: 580px;
}

.section-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary);
}

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

.content-wrapper ul {
    list-style: none;
    margin: 30px 0;
}

.content-wrapper ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.content-wrapper ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.service-price .currency {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-price .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

.testimonials-section {
    padding: 100px 60px;
    background: var(--white);
}

.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats-section {
    display: flex;
    padding: 0;
}

.stat-box {
    flex: 1;
    padding: 60px;
    text-align: center;
    background: var(--white);
}

.stat-box:nth-child(even) {
    background: var(--bg-light);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 60px 30px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 8px;
}

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

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

.contact-page {
    padding: 100px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-page {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page .update-date {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--accent);
}

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

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

@media (max-width: 1024px) {
    .nav-wrapper {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-wrapper.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: var(--primary);
        color: var(--white);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .main-content {
        margin-left: 0;
    }

    .cookie-banner {
        left: 0;
    }

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

    .split-section {
        flex-direction: column !important;
    }

    .split-left,
    .split-right,
    .section-content,
    .section-visual {
        padding: 60px 30px;
    }

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

    .services-grid,
    .testimonials-section,
    .cta-banner,
    .contact-page,
    .legal-page {
        padding: 60px 30px;
    }

    .stats-section {
        flex-wrap: wrap;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .content-wrapper h2 {
        font-size: 2rem;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
