:root {
    --very-green: #219653;
    --very-dark-blue: #1F2A44;
    --very-purple: #4A3AFF;
    --text-color: #1F2A44;
    --bg-light: #F4F6F8;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--very-green);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--very-dark-blue);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--very-green);
}

/* Hero Section */
.hero {
    background-color: var(--very-green);
    color: var(--very-dark-blue);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 0 1 400px;
    max-width: 400px;
    min-width: 250px;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--very-dark-blue);
}

.hero .price {
    font-size: 8rem;
    font-weight: 900;
    display: block;
    margin: 1rem 0;
    color: var(--white);
}

.hero .price small {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: middle;
    color: var(--very-dark-blue);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--very-dark-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #151e32;
}

/* Offer Details */
.offer-details {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--very-green);
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Store Section */
.store-section {
    background-color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.store-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.store-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.store-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #eee;
    border-radius: 20px;
    overflow: hidden;
}

/* Offers Section */
.offers-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--very-green);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card-content {
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-giga {
    font-size: 4rem;
    font-weight: 900;
    color: var(--very-green);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.offer-giga-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--very-dark-blue);
    margin-bottom: 1.5rem;
}

.offer-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--very-dark-blue);
    margin-bottom: 0.25rem;
}

.offer-price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.offer-period {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--very-dark-blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.offer-promo {
    color: #D81B60;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 2px solid #D81B60;
    border-radius: 20px;
    display: inline-block;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
}

.offer-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.offer-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--very-green);
    font-weight: bold;
}

.offer-cta {
    display: inline-block;
    background-color: var(--very-green);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.3s;
    margin-top: auto;
    text-align: center;
}

.offer-cta:hover {
    transform: scale(1.05);
    background-color: #1d8a49;
}

/* Footer */
footer {
    background-color: var(--very-dark-blue);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
        /* Show image first on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .price {
        font-size: 4rem;
    }

    .store-container {
        flex-direction: column;
    }

    .store-info {
        text-align: center;
    }

    nav {
        display: none;
    }
}