/* --- General Body & Typography --- */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0d2c4e; /* Dark Blue */
}

a {
    text-decoration: none;
    color: #007bff; /* Primary Blue */
}

a:hover {
    text-decoration: underline;
}

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

/* --- Header & Navigation --- */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: #0d2c4e;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #ff4500; /* Vibrant Orange */
}

/* --- Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #0d2c4e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- Main Content & Sections --- */
main {
    padding: 40px 0;
}

.page-header {
    background-color: #0d2c4e;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    color: #fff;
    margin: 0;
    font-size: 2.8rem;
}

.content-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.content-section h2 {
    margin-top: 0;
    border-bottom: 2px solid #ff4500;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    background-color: #ff4500; /* Vibrant Orange */
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e03e00;
    box-shadow: 0 6px 15px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
}


/* --- Footer --- */
.footer {
    background-color: #0d2c4e;
    color: #f8f9fa;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-about, .footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-about h3 {
    color: #fff;
}

.footer-about p, .footer-disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4500;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
    color: #ccc;
}

/* --- Homepage Specific --- */
.hero {
    background: #0d2c4e url('images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card img {
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* --- Affiliate Page Specific --- */
.affiliate-hero {
    text-align: center;
    padding: 60px 20px;
}

.affiliate-hero img.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.affiliate-hero h1 {
    font-size: 3rem;
    color: #0d2c4e;
    margin: 0;
}

.affiliate-hero p.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #555;
    margin: 10px 0 30px;
}

.affiliate-hero .cta-button {
    font-size: 22px;
    padding: 20px 45px;
}

.reviews-section {
    padding: 50px 0;
    background-color: #e9ecef;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #007bff;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.review-card .author {
    font-weight: bold;
    color: #0d2c4e;
    text-align: right;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 20px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 { font-size: 2.5rem; }
    .affiliate-hero h1 { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.2rem; }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}