* {
    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;
}

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

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #1a1a2e;
    color: white;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 32px;
}

.header-right a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f5f7fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: #dfe6e9;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #357abd;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: white;
}

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-image {
    flex: 0.7;
    background: #ecf0f1;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.programs-showcase {
    padding: 100px 5%;
    background: #f9fafb;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-header-center p {
    font-size: 19px;
    color: #4a5568;
}

.program-card-left,
.program-card-right {
    display: flex;
    margin-bottom: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.program-card-left {
    flex-direction: row;
}

.program-card-right {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    background: #bdc3c7;
    min-height: 360px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.card-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.7;
}

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

.features-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #2c3e50;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.btn-select {
    padding: 14px 28px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #357abd;
}

.program-card-full {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.methodology-split {
    display: flex;
    background: white;
    min-height: 500px;
}

.method-visual {
    flex: 1;
    background: #95a5a6;
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

.method-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    align-self: flex-start;
    margin-top: 12px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #4a90e2;
    color: white;
}

.testimonials-inline {
    padding: 100px 8%;
    background: #f5f7fa;
}

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

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 36px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    padding: 100px 5%;
    background: white;
}

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

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

.form-container p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

input[type="text"],
input[type="email"] {
    padding: 14px;
    margin-bottom: 24px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: #4a90e2;
}

.service-display {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 28px;
    font-size: 16px;
    color: #4a5568;
    border: 2px dashed #cbd5e0;
}

.service-display.selected {
    background: #e3f2fd;
    border-color: #4a90e2;
    color: #1a1a2e;
    font-weight: 600;
}

.btn-submit {
    padding: 16px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover:not(:disabled) {
    background: #357abd;
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.cta-final {
    padding: 100px 5%;
    text-align: center;
    background: #1a1a2e;
    color: white;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 19px;
    margin-bottom: 36px;
    color: #e0e0e0;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 5%;
    background: #2c3e50;
    color: white;
    gap: 48px;
}

.footer-column {
    flex: 1;
}

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #bdc3c7;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #95a5a6;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4a90e2;
}

.disclaimer-section {
    padding: 40px 5%;
    background: #ecf0f1;
    border-top: 1px solid #cbd5e0;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 24px 5%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 32px;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4a90e2;
    color: white;
}

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #e0e0e0;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .methodology-split,
    .program-card-left,
    .program-card-right,
    .program-card-full {
        flex-direction: column;
    }

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

    .card-content {
        padding: 32px;
    }

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

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