/* Color Variables - Pastel / Calm Palette */
:root {
    --primary-color: #6a5acd;   /* Lavender */
    --secondary-color: #ffb7b2; /* Pastel Pink/Coral */
    --bg-color: #f9f9ff;        /* Very light background */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --alert-bg: #fff3cd;        /* Background for Disclaimer */
    --alert-text: #856404;
    --crisis-bg: #ffeef0;       /* Light red for crisis box */
    --crisis-border: #ffccd2;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 100;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary-color); text-decoration: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--text-color); font-weight: 600; }
.btn-primary {
    background-color: var(--primary-color); color: var(--white) !important;
    padding: 8px 20px; border-radius: 25px; transition: transform 0.2s;
}
.btn-primary:hover { transform: scale(1.05); }

/* Hero Section */
.hero { padding: 80px 0; }
.hero-content { display: flex; align-items: center; flex-wrap: wrap; gap: 40px; }
.hero-text { flex: 1; min-width: 300px; }
.hero-text h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--primary-color); }
.hero-image { flex: 1; display: flex; justify-content: center; }

/* Pure CSS Phone Mockup */
.phone-mockup {
    width: 280px; height: 550px; background-color: #333; border-radius: 40px;
    padding: 15px; box-shadow: 0 20px 50px rgba(106, 90, 205, 0.2); border: 8px solid #333;
}
.screen {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    width: 100%; height: 100%; border-radius: 25px;
    display: flex; justify-content: center; align-items: center;
    padding: 20px; text-align: center;
}
.screen .quote { color: white; font-size: 1.5rem; font-weight: 700; font-style: italic; }
.btn-store {
    padding: 12px 24px; border: none; background-color: #333; color: white;
    border-radius: 8px; margin-right: 10px; margin-top: 20px; cursor: pointer; font-weight: 600;
}

/* Features */
.features { padding: 60px 0; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { background: var(--white); padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-card h3 { color: var(--primary-color); margin-bottom: 10px; }

/* Disclaimer Section */
.disclaimer-section { padding: 40px 0; background-color: var(--white); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.disclaimer-box { background-color: var(--alert-bg); color: var(--alert-text); padding: 25px; border-radius: 10px; border-left: 5px solid #ffeeba; }
.disclaimer-box h3 { margin-bottom: 10px; }

/* Legal & Support Content */
.legal-content { padding: 60px 20px; max-width: 800px; min-height: 60vh; }
.legal-content h1 { margin-bottom: 10px; color: var(--primary-color); }
.legal-content section { margin-bottom: 30px; }
.legal-content h2 { font-size: 1.5rem; margin-bottom: 10px; margin-top: 20px; }
.highlight-legal { background-color: #fff9db; padding: 20px; border-radius: 8px; border: 1px solid #ffeeba; }
.last-updated, .intro-text { color: var(--text-light); margin-bottom: 30px; display: block; }

/* --- NEW STYLES FOR SUPPORT PAGE --- */
.crisis-box {
    background-color: var(--crisis-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--crisis-border);
}
.crisis-box h2 { margin-top: 0; color: #d63345; }
.resource-links { background: white; padding: 15px; border-radius: 8px; margin-top: 15px; }
.resource-links p { margin-bottom: 8px; }

.divider { border: 0; height: 1px; background: #eee; margin: 40px 0; }

.faq-item { margin-bottom: 25px; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-color); }
.faq-item p { color: var(--text-light); font-size: 0.95rem; }

.contact-box { text-align: center; margin-top: 50px; }
.contact-btn { display: inline-block; margin-top: 15px; text-decoration: none; }
.small-note { font-size: 0.85rem; color: #999; margin-top: 10px; }
/* ----------------------------------- */

/* Footer */
footer { background-color: var(--white); padding: 40px 0; text-align: center; color: var(--text-light); margin-top: auto; }
.footer-links { margin-bottom: 20px; }
.footer-links a { color: var(--text-color); margin: 0 10px; text-decoration: none; }
.footer-links a:hover, .active-link { color: var(--primary-color); text-decoration: underline; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .phone-mockup { width: 240px; height: 480px; }
}
