@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary-blue: #A3C9E2;
    --cream: #FDFBF7;
    --rose: #E8B4BC;
    --charcoal: #3D3D3D;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --border-grey: #E0E0E0;
}

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

html, body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    font-size: 18px;
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-weight: 400;
}

strong {
    font-weight: 700;
    color: var(--charcoal);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--rose);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-grey);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo:hover {
    color: var(--primary-blue);
}

nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}

body {
    padding-top: 70px;
}

.container-wide {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 100px;
}

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

section {
    padding: 140px 0;
}

.hero {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(163, 201, 226, 0.15) 0%, rgba(232, 180, 188, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: var(--rose);
    transform: scale(1.05);
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.15);
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 140px;
}

.content-section.reversed {
    direction: rtl;
}

.content-section.reversed > * {
    direction: ltr;
}

.content-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: scale(1.03);
}

.content-text h2 {
    margin-top: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 140px;
}

.card {
    background-color: var(--light-grey);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(163, 201, 226, 0.25);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.card h3 {
    margin-top: 0;
    color: var(--charcoal);
}

.card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--rose);
}

.image-banner {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 140px;
}

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

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
}

.image-overlay h2 {
    margin-top: 0;
}

.myths-list {
    margin: 2rem 0;
}

.myths-list ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.myths-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.accordion {
    margin: 2rem 0;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-grey);
    transition: background-color 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 1.5rem;
    background-color: var(--light-grey);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: #E8E8E8;
    color: var(--primary-blue);
}

.accordion-header.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.accordion-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    background-color: var(--white);
    line-height: 1.8;
}

.accordion-content.active {
    display: block;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-grey) 50%, transparent 100%);
    margin: 3rem 0;
}

footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 140px;
}

.footer-container {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rose);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.education-notice {
    background-color: var(--cream);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.disclaimer-section {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-grey);
}

.disclaimer-section h3 {
    margin-top: 0;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(163, 201, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 200px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    gap: 2rem;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-button.accept {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cookie-button.accept:hover {
    background-color: var(--rose);
    transform: scale(1.05);
}

.cookie-button.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-button.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.cookie-policy {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-policy.active {
    display: flex;
}

.cookie-policy-content {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-policy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
}

.thank-you-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you-container h1 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 12px 32px rgba(163, 201, 226, 0.25);
    border-color: var(--primary-blue);
    transform: translateY(-6px);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    margin-top: 0;
}

.blog-card-content p {
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-link:hover {
    color: var(--rose);
}

@media (max-width: 1200px) {
    .container-wide,
    .footer-container,
    .header-container {
        padding: 0 60px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .content-section,
    .card-grid,
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 100px 0;
    }

    .hero {
        padding: 150px 0 100px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .container-wide,
    .footer-container,
    .header-container {
        padding: 0 20px;
    }

    header {
        position: relative;
        padding: 1rem 0;
    }

    body {
        padding-top: 60px;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    nav a {
        display: block;
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    html, body {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
    }

    .content-image {
        height: 300px;
    }

    .image-banner {
        height: 250px;
    }

    .card-grid,
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .content-section {
        gap: 2rem;
        margin-bottom: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
        gap: 1rem;
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .cookie-button {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container-wide,
    .footer-container,
    .header-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero-image,
    .content-image {
        height: 200px;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .image-overlay {
        padding: 1rem;
    }

    .cookie-policy-content {
        padding: 1.5rem;
    }
}
