/* style.css */

/* --- 1. Base Reset and Typography --- */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6; /* Light background for easy reading */
}

h1, h2, h3 {
    color: #004c99; /* Deep Blue - Primary Brand Color */
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
    border-bottom: 2px solid #ff6600; /* Orange Accent */
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- 2. Header and Navigation --- */
.header {
    background-color: #004c99;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.header a:hover {
    color: #ff6600;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

/* --- 3. Hero Section (Index Page) --- */
.hero {
    background: #f0f0f0;
    padding: 80px 5%;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e65c00;
}

.image-placeholder {
    width: 100%;
    max-width: 700px;
    height: 350px;
    background-color: #ddd;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
    border-radius: 8px;
    overflow: hidden;
}

/* --- 4. Trust & Features Sections --- */
.content-section {
    padding: 60px 5%;
    text-align: center;
}

.trust-section {
    background-color: #e8e8e8;
}

.sponsors img {
    height: 50px;
    margin: 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    gap: 20px;
}

.feature-box {
    width: 30%;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* --- 5. Review Cards (Testimonials) --- */
.review-card {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6600;
}

.star-rating {
    color: gold;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* --- 6. About Page Specifics --- */
.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    text-align: left;
}

.image-placeholder-team {
    width: 150px;
    height: 150px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    border: 3px solid #004c99;
    flex-shrink: 0;
}

/* --- 7. Legal Pages (Privacy, Terms) --- */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: #ff6600;
}

/* --- 8. Footer and Utility --- */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 30px 5%;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

/* --- 9. Cookie Consent Banner (Utility) --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Controlled by JavaScript */
}

.cookie-consent button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 15px;
}