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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #d4a574;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f6f3;
    --bg-dark: #2a2a2a;
    --border-color: #ddd;
}

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

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

header {
    background: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4459 100%);
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23d4a574" width="800" height="600"/><path fill="%238b6f47" opacity="0.3" d="M0,300 Q200,200 400,300 T800,300 L800,600 L0,600 Z"/><circle cx="200" cy="150" r="80" fill="white" opacity="0.1"/><circle cx="600" cy="400" r="120" fill="white" opacity="0.1"/></svg>') center/cover;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212,165,116,0.2), rgba(44,95,125,0.3));
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-left p {
    font-size: 21px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,165,116,0.4);
}

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

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

.split-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background: var(--secondary-color);
    position: relative;
    min-height: 500px;
}

.split-section:nth-child(even) .split-content {
    background: white;
}

.split-section:nth-child(odd) .split-content {
    background: var(--bg-light);
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.split-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #444;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    padding: 45px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

.form-section {
    background: linear-gradient(135deg, var(--primary-color), #1e4459);
    padding: 100px 0;
    color: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 45px;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 50px 45px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1e4459;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 20px 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212,165,116,0.5);
    z-index: 999;
    transition: transform 0.3s ease;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

.testimonials-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
}

.trust-section {
    padding: 80px 0;
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px 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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    background: white;
    color: var(--text-dark);
}

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #1e4459);
    color: white;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin: 25px 0;
}

.content-section ul li {
    padding: 12px 0;
    font-size: 17px;
    color: #444;
    padding-left: 30px;
    position: relative;
}

.content-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.contact-info strong {
    color: var(--text-dark);
}

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

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

.thanks-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--text-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .main-nav.active {
        display: flex;
    }

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

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

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

    .hero-left h1 {
        font-size: 38px;
    }

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

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

    .trust-stats {
        gap: 40px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 15px;
    }

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

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