/* styles.css - Homepage & Global Styles */

/* --- Global Resets & Base Styles --- */
:root {
    --primary-color: #007bff;
    --primary-hover-color: #0056b3;
    --secondary-color: #6c757d;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
}
body, html {
    margin: 0; padding: 0;
    font-family: 'Roboto', sans-serif; /* Use a highly readable font for body text */
    color: #333;
    background-color: var(--bg-off-white);
    scroll-behavior: smooth;
    line-height: 1.7;
}
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--text-dark); }
main { display: block; } /* For older browsers */
.section-padding { padding: 60px 0; }
.bg-light { background-color: var(--bg-light); border-top: 1px solid #e9ecef; border-bottom: 1px solid #e9ecef; }
.section-title { font-size: 2.5em; text-align: center; margin-bottom: 20px; }
.section-subtitle { text-align: center; font-size: 1.1em; color: #6c757d; max-width: 600px; margin: 0 auto 50px auto; }

/* --- Buttons --- */
.btn { display: inline-block; padding: 12px 28px; font-size: 1em; font-weight: 500; text-align: center; text-decoration: none; border-radius: 25px; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; }
.btn-lg { padding: 15px 35px; font-size: 1.1em; }
.btn-primary { background-color: var(--primary-color); color: #fff; box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2); }
.btn-primary:hover { background-color: var(--primary-hover-color); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: #fff; }

/* --- Hero Section --- */
#hero { background: linear-gradient(135deg, #6dd5ed, #2193b0); color: #fff; padding: 100px 0; text-align: center; }
#hero h1 { font-size: 3em; margin-bottom: 20px; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
#hero .subtitle { font-size: 1.3em; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; color: #fff; }
.hero-cta a { margin: 0 10px; }
#hero-cta .btn-secondary { background-color: #fff; color: #212529; }

/* --- Features Section --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-item { background-color: var(--bg-light); padding: 30px; border-radius: 8px; text-align: left; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.feature-item h3 { font-size: 1.4em; margin-bottom: 10px; color: #34495e; }
.feature-item p { font-size: 0.95em; color: #555; }

/* --- Target Audience Section --- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.audience-card { padding: 30px; border: 1px solid #e0e7ef; border-radius: 8px; }
.audience-card h3 { font-size: 1.8em; color: var(--primary-color); }
.audience-card ul { list-style: none; padding-left: 0; margin: 20px 0 30px 0; }
.audience-card ul li { margin-bottom: 10px; display: flex; align-items: center; }
.check-icon { color: #28a745; margin-right: 10px; font-size: 1.2em; }

/* --- FAQ Section --- */
.faq-container { max-width: 800px; }
.faq-item { border-bottom: 1px solid #e0e7ef; margin-bottom: 15px; }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 15px 0; font-size: 1.2em; font-weight: 500; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5em; color: var(--primary-color); transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 0 15px 0; margin: 0; }

/* --- CTA Section --- */
#cta { background-color: var(--primary-color); color: #fff; text-align: center; }
#cta h2 { color: #fff; font-size: 2.2em; }
#cta p { color: #e0e7ef; }
#cta .btn-primary { background-color: #ffc107; color: #212529; }
#cta .btn-primary:hover { background-color: #e0a800; }

/* --- Responsive --- */
@media (max-width: 768px) {
    #hero h1 { font-size: 2.2em; }
    #hero .subtitle { font-size: 1.1em; }
    .section-title { font-size: 2em; }
    .audience-grid { grid-template-columns: 1fr; }
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Default icon size, can be overridden */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}