﻿@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;700&family=Outfit:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #1A365D; /* Navy Blue */
    --secondary: #48BB78; /* Wellbeing Green */
    --accent: #F6AD55; /* Warm Peach */
    --bg-light: #F7FAFC;
    --text-dark: #2D3748;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 { font-family: 'Epilogue', sans-serif; color: var(--primary); }

/* Typography */
h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 2rem; line-height: 1.15; letter-spacing: -0.02em; }

/* Unique Graphical Element: Animated Organic Shape */
.organic-shape {
    position: fixed;
    top: -15vw;
    right: -10vw;
    width: 50vw;
    height: 50vw;
    background: linear-gradient(120deg, var(--secondary) 0%, rgba(72,187,120,0.1) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    opacity: 0.4;
    filter: blur(40px);
    animation: morph 15s ease-in-out infinite alternate;
}
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(45deg) scale(1.1); }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 100;
    padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Epilogue', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--primary); text-decoration: none; }
.logo img { width: 40px; }

/* Buttons */
.btn-primary {
    background: var(--primary); color: var(--white); padding: 1.2rem 2.8rem;
    font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 50px;
    display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(72,187,120,0.3); }

/* Layout Sections */
section { padding: 8rem 5%; }

/* Hero */
.hero {
    min-height: 85vh; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero p { font-size: 1.3rem; margin-bottom: 2.5rem; color: #4A5568; font-weight: 300; }
.hero-img { width: 100%; border-radius: 30px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); transform: rotate(2deg); transition: transform 0.5s; }
.hero-img:hover { transform: rotate(0deg); }

/* Features (Asymmetric) */
.features { background: var(--white); border-radius: 40px; margin: 0 2%; padding: 6rem 5%; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.feature-card { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.feature-card:nth-child(even) { direction: rtl; }
.feature-card:nth-child(even) > div { direction: ltr; }
.feature-img { width: 100%; border-radius: 20px; }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { margin-bottom: 1.2rem; display: flex; align-items: center; gap: 15px; font-size: 1.15rem; }
.feature-list i { color: var(--secondary); font-size: 1.4rem; background: rgba(72,187,120,0.1); padding: 10px; border-radius: 50%; }

/* Random Section (Statistics) */
.stats { background: var(--primary); color: var(--white); text-align: center; border-radius: 40px; margin: 4rem 2%; }
.stats h2 { color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.stat-box { padding: 2rem; background: rgba(255,255,255,0.05); border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.stat-box h3 { font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem; }

/* About */
.about { text-align: center; max-width: 900px; margin: 0 auto; }
.about p { font-size: 1.2rem; color: #4A5568; margin-bottom: 1.5rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--white); padding: 1.5rem 2rem; border-radius: 15px; margin-bottom: 1rem; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: all 0.3s; border-left: 5px solid var(--secondary); }
summary { font-size: 1.25rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--accent); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1.5rem; color: #4A5568; line-height: 1.7; }

/* Form Section */
.form-section { background: var(--bg-light); display: flex; justify-content: center; }
.form-wrapper { background: var(--white); padding: 4rem; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); max-width: 600px; width: 100%; text-align: center; position: relative; z-index: 10; border-top: 5px solid var(--accent); }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group input { width: 100%; padding: 1.2rem 1.5rem; border: 2px solid #E2E8F0; border-radius: 12px; font-size: 1.05rem; font-family: inherit; transition: border-color 0.3s; background: #F7FAFC; }
.form-group input:focus { border-color: var(--secondary); outline: none; background: var(--white); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: #718096; margin-top: 1rem; }
.checkbox-group input { width: auto; margin-top: 4px; accent-color: var(--secondary); }
.success-msg { display: none; padding: 3rem 2rem; text-align: center; background: #F0FFF4; border-radius: 20px; border: 2px solid var(--secondary); }
.success-msg h3 { color: var(--secondary); font-size: 2rem; margin-bottom: 15px; }
.success-msg p { color: #2D3748; font-size: 1.1rem; }

/* Legal Pages */
.legal-main { padding: 6rem 5%; background: var(--bg-light); min-height: 80vh; }
.legal-container { max-width: 900px; margin: 0 auto; background: var(--white); padding: 5rem; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.legal-container h1 { font-size: 2.8rem; margin-bottom: 2.5rem; border-bottom: 3px solid var(--secondary); padding-bottom: 1rem; }
.legal-container h2 { font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1.5rem; color: var(--primary); }
.legal-container p, .legal-container ul { margin-bottom: 1.2rem; color: #4A5568; font-size: 1.1rem; }
.legal-container ul { padding-left: 2rem; }
.map-container { width: 100%; height: 350px; margin-top: 3rem; border-radius: 15px; overflow: hidden; }

/* Footer */
footer { background: var(--primary); color: #CBD5E0; padding: 4rem 5%; text-align: center; }
.footer-logo { font-family: 'Epilogue'; font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--secondary); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(150%); width: 90%; max-width: 800px; background: var(--white); color: var(--text-dark); padding: 2rem; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 15px 40px rgba(0,0,0,0.2); border-radius: 20px; border-bottom: 5px solid var(--accent); }
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-btns { display: flex; gap: 1rem; }
.btn-cookie { padding: 0.8rem 1.8rem; border: none; cursor: pointer; font-family: 'Outfit'; font-weight: 600; border-radius: 50px; transition: all 0.3s; }
.btn-accept { background: var(--primary); color: var(--white); }
.btn-decline { background: #E2E8F0; color: var(--text-dark); }
.btn-accept:hover { background: var(--secondary); }

/* Mobile Adaptability */
@media (max-width: 992px) {
    .hero, .feature-card, .feature-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; text-align: center; }
    .hero-img { width: 90%; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr; }
    .feature-list li { justify-content: center; text-align: left; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-container, .form-wrapper { padding: 2rem; }
    h1 { font-size: 2.8rem; }
}
