/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Header & Navbar */
.navbar {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
}

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.cta-button {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #333;
}

/* Hero Section */
.hero {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    margin-top: 70px; /* To offset fixed navbar */
}

.hero h1 {
    font-size: 3rem;
}

.cta-button-large {
    background: #ffc107;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Services Section */
.services {
    padding: 40px 0;
}

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

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

.grid-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.grid-item img {
    max-width: 100%;
    border-radius: 5px;
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
    background: #fff;
}

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

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

.review {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.review span {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Page Header */
.page-header {
    background: #f4f4f4;
    padding: 80px 0 20px;
    text-align: center;
    margin-top: 70px;
}

/* Content Section */
.content {
    padding: 40px 0;
}

/* Affiliate Page */
.affiliate-hero {
    color: #fff;
    text-align: center;
    padding: 100px 0;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
}

.affiliate-content {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 10px;
}

.affiliate-content h1 {
    font-size: 3rem;
}

.affiliate-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
}

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

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.disclaimer {
    font-size: 0.8rem;
    color: #ccc;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
    }

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

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

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