: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;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.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;
}

/* Footer */
footer {
    background-color: var(--very-dark-blue);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .price {
        font-size: 4rem;
    }

    .store-container {
        flex-direction: column;
    }

    .store-info {
        text-align: center;
    }

    nav {
        display: none;
    }
}