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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

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

.split-left {
    flex: 1;
    padding: 80px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
}

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

.split-hero p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

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

.split-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 700;
}

.split-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.split-section ul {
    list-style: none;
    margin: 30px 0;
}

.split-section li {
    padding: 12px 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.split-section li:before {
    content: "✓";
    color: #1a73e8;
    font-weight: bold;
    font-size: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 5%;
    background: #f8fafc;
}

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

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

.form-section {
    display: flex;
    background: #0f172a;
    color: white;
}

.form-left {
    flex: 1;
    padding: 80px 8%;
}

.form-right {
    flex: 1;
    padding: 80px 8%;
    background: #1e293b;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #334155;
    background: #0f172a;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1557b0;
}

.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 5% 30px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

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

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

.accept-btn {
    background: #1a73e8;
    color: white;
}

.reject-btn {
    background: #475569;
    color: white;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 5% 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    margin: 40px 0 20px;
    color: #1e293b;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #334155;
}

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

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #475569;
}

.contact-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 15px 0;
    font-size: 16px;
}

.email-display {
    color: #1e293b;
    font-weight: 500;
}

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

.thanks-box {
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: #1a73e8;
    margin-bottom: 25px;
}

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

.checkmark {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-link:hover {
    background: #1557b0;
}

.disclaimer {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 25px 30px;
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer h3 {
    color: #92400e;
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 15px;
}

.disclaimer p {
    color: #78350f;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

    .split-right,
    .split-image {
        min-height: 50vh;
    }

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

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

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

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

    .page-header h1 {
        font-size: 36px;
    }
}
