/* ======================= Reset & Global Styles ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #008080;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #008080;
    color: #FFFFFF;
    border: 2px solid #008080;
}

.btn-primary:hover {
    background-color: #006666;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #008080;
    border: 2px solid #008080;
}

.btn-secondary:hover {
    background-color: #008080;
    color: #FFFFFF;
}

/* ======================= Header ======================= */
.header {
    background-color: #FFFFFF;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333333;
}

/* ======================= Hero Section ======================= */
.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text .btn-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
}

/* ======================= Benefits Section ======================= */
.benefits {
    background-color: #F8F9FA;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    color: #008080;
    margin-bottom: 1rem;
}

/* ======================= Pricing Section ======================= */
.pricing {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing .card {
    padding: 2.5rem 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #008080;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.description {
    min-height: 60px;
    color: #555;
}

.card-featured {
    transform: scale(1.05);
    border: 2px solid #008080;
}

/* ======================= Footer ======================= */
.footer {
    background-color: #333333;
    color: #F8F9FA;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #F8F9FA;
    margin-right: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #008080;
}

.footer-social a {
    color: #F8F9FA;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #008080;
}

/* ======================= Responsive Design (Mobile-First) ======================= */

/* Tablets and small desktops */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { margin-bottom: 2rem; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
        padding-top: 5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .nav-item .btn {
        width: 100%;
    }

    .hamburger {
        display: block;
        z-index: 1001; /* Above the nav-menu */
    }
    
    .hamburger.active i::before {
        content: '\f00d'; /* Font Awesome close icon */
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .card-featured {
        transform: scale(1); /* Reset featured card scaling on mobile */
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        order: 2;
    }

    .footer-social {
        order: 1;
    }
}