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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

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

.hero-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
    min-height: 85vh;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1e3a8a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.split-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

.split-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.split-content ul {
    list-style: none;
    margin: 24px 0;
}

.split-content li {
    padding: 12px 0;
    font-size: 17px;
    color: #4a4a4a;
    position: relative;
    padding-left: 28px;
}

.split-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f9fafb;
    padding: 48px 36px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

.cta-secondary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #1e40af;
}

.form-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 5%;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 36px;
    color: #1a1a1a;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-section {
    padding: 100px 5%;
    background: #ffffff;
}

.testimonial-grid {
    display: flex;
    gap: 36px;
    max-width: 1400px;
    margin: 60px auto 0;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info {
    flex: 1;
    background: #1e3a8a;
    color: #ffffff;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    flex: 1;
    padding: 80px 6%;
    background: #f9fafb;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 36px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    opacity: 0.9;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px 5%;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content {
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #6b7280;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 36px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page li {
    margin-bottom: 12px;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thanks-box {
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 650px;
}

.thanks-box h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.back-home {
    display: inline-block;
    margin-top: 32px;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-home:hover {
    background: #1e40af;
}

.disclaimer {
    background: #f9fafb;
    padding: 40px 5%;
    border-top: 1px solid #e5e7eb;
    margin-top: 80px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.section-heading {
    text-align: center;
    font-size: 46px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-split,
    .section-split,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .form-container {
        padding: 40px 28px;
    }

    .cookie-banner.active {
        flex-direction: column;
    }
}
