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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie-accept, .btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #2980b9;
}

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

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-visual-full {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-lead {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.story-hook {
    padding: 100px 20px;
    background: #f8f9fa;
}

.story-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.visual-insight {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.insight-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.insight-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-overlay-box {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.insight-overlay-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.insight-overlay-box p {
    font-size: 16px;
    color: #555;
}

.problem-amplification {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
}

.problem-points p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.science-backing {
    padding: 100px 20px;
    background: #ffffff;
}

.science-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.science-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.science-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.testimonial-image-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.testimonial-text-overlay blockquote {
    font-size: 26px;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.testimonial-text-overlay cite {
    font-size: 18px;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.programmes-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.programmes-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.programmes-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.programmes-intro p {
    font-size: 18px;
    color: #555;
}

.programmes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.programme-item {
    background: #ffffff;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.programme-item:hover {
    transform: translateY(-4px);
}

.programme-item.featured {
    border: 3px solid #e74c3c;
}

.programme-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 8px 16px;
    font-weight: 700;
    z-index: 10;
}

.programme-visual {
    flex: 1;
    background: #ecf0f1;
}

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

.programme-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.programme-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.programme-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-programme-select {
    padding: 14px 30px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-programme-select:hover {
    background: #2980b9;
}

.form-fullwidth {
    padding: 100px 20px;
    background: #34495e;
    color: #ffffff;
}

.form-fullwidth.hidden {
    display: none;
}

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

.form-content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-row label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-row input, .form-row textarea {
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
}

.selected-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.btn-submit-form {
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-form:hover {
    background: #c0392b;
}

.guarantee-visual {
    padding: 100px 20px;
    background: #ffffff;
}

.guarantee-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-wrapper h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.expectation-card {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.expectation-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.expectation-card p {
    font-size: 15px;
    color: #555;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-block p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

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

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

.footer-block ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-block ul li a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-references h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-references p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 6px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 18px;
    }

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

    .insight-overlay-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px;
    }

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

    .header-container {
        flex-direction: column;
        gap: 20px;
    }
}