:root {
    --primary: #1a3a52;
    --secondary: #2d5f7e;
    --accent: #d4af37;
    --light: #f8f9fa;
    --dark: #1f1f1f;
    --gray: #6c757d;
    --success: #28a745;
}

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

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

.nav-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.hero-left {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
}

.hero-right {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%231a3a52" width="800" height="600"/><path fill="%232d5f7e" opacity="0.3" d="M0 300 Q200 200 400 300 T800 300 V600 H0 Z"/><circle cx="600" cy="150" r="80" fill="%23d4af37" opacity="0.2"/><circle cx="200" cy="400" r="60" fill="%23d4af37" opacity="0.15"/></svg>') center/cover;
    color: #fff;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #c29d2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: #fff;
    color: var(--primary);
}

.section-split {
    display: flex;
    min-height: 70vh;
}

.split-content,
.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem;
}

.split-content {
    background: #fff;
}

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

.split-reverse .split-content {
    order: 2;
}

.split-reverse .split-visual {
    order: 1;
}

.content-box {
    max-width: 550px;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

.content-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.content-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    margin-bottom: 2rem;
}

.content-box ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

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

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-placeholder svg {
    width: 80%;
    height: 80%;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #fff;
}

.services-grid h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent);
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.price-tag small {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

.select-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

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

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 31, 31, 0.98);
    color: #fff;
    padding: 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #c29d2f;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-reject:hover {
    background: #fff;
    color: var(--dark);
}

.stats-section {
    background: var(--light);
    padding: 5rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-box {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-info h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary);
    text-align: center;
}

.info-block {
    background: var(--light);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
}

.info-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--gray);
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
    padding: 2rem;
}

.thanks-box {
    background: #fff;
    padding: 5rem 4rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 700px;
}

.thanks-box h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.checkmark {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #fff;
}

@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-left,
    .hero-right,
    .split-content,
    .split-visual {
        padding: 3rem 2rem;
    }

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

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

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

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
}

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

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

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

    .form-container {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
