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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.navbar {
    background: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #e9ecef;
}

.hero-right img {
    width: 100%;
    height: 600px;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.problem-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.insight-split {
    padding: 100px 20px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background: #dee2e6;
}

.split-image img {
    width: 100%;
    height: 500px;
    display: block;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
}

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

.services-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 20px;
    color: #6c757d;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 0 24px 20px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #764ba2;
}

.form-section {
    padding: 100px 20px;
    background: #1a1a2e;
    color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    opacity: 0.9;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #495057;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    color: #2c3e50;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #764ba2;
}

.trust-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.testimonials {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #495057;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff3cd;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    text-align: center;
}

.footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

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

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

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    background: #764ba2;
}

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

.btn-reject:hover {
    background: #5a6268;
}

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

    .hero-left {
        padding: 60px 30px;
    }

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

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}

.contact-page {
    padding: 80px 20px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.contact-info {
    max-width: 800px;
    margin: 40px auto;
}

.contact-item {
    background: #f8f9fa;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #495057;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s;
}

.thanks-content a:hover {
    transform: translateY(-2px);
}

.services-page {
    padding: 80px 20px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a2e;
    text-align: center;
}

.services-page-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #495057;
}

.about-page {
    padding: 80px 20px;
}

.about-hero {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.about-section {
    max-width: 900px;
    margin: 60px auto;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}