* {
    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;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 50px;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.hero-image {
    max-width: 1200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background-color: #764ba2;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.intro-block {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #495057;
}

.problem-section {
    background: #ffffff;
    padding: 100px 40px;
}

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

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.insight-section {
    background: #1e293b;
    color: #ffffff;
    padding: 90px 40px;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
}

.insight-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.insight-section sup a {
    color: #60a5fa;
    font-weight: 600;
}

.trust-section {
    background: #f1f5f9;
    padding: 100px 40px;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2563eb;
}

.trust-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.testimonial-block {
    background: #667eea;
    color: #ffffff;
    padding: 70px 40px;
}

.testimonial-block blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.services-section {
    background: #ffffff;
    padding: 100px 40px;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 45%;
    height: 350px;
    background-color: #cbd5e1;
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.select-service {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.form-section {
    background: #f1f5f9;
    padding: 90px 40px;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}

.webinar-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

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

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

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

.selected-service-display {
    background: #dbeafe;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.selected-service-display p {
    color: #1e40af;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    background: #fffbeb;
    padding: 50px 40px;
}

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

.main-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

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

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

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

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

.references {
    font-size: 13px;
    line-height: 1.8;
    padding-left: 20px;
}

.references a {
    color: #60a5fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #1d4ed8;
}

.cookie-reject {
    background: #475569;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #334155;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 40px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0f172a;
}

.thanks-container p {
    font-size: 19px;
    color: #64748b;
    margin-bottom: 15px;
    max-width: 600px;
}

.back-home {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 30px;
    transition: background 0.3s, transform 0.2s;
}

.back-home:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0f172a;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    color: #2563eb;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #475569;
}

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #0f172a;
}

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

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

    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 250px;
    }

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}