.hero-section {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 5rem 2rem 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #e8f5e9;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #c8e6c9;
    max-width: 550px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: #2e7d32;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: -3rem auto 3rem auto;
    position: relative;
    z-index: 3;
    padding: 0 1rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    flex-shrink: 0;
}

.feature-text h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.deal-section {
    margin-bottom: 5rem;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Better vertical alignment */
    margin-bottom: 1.5rem;
    border-bottom: none; /* Remove the generic line */
    padding-bottom: 0;
    position: relative;
}

.section-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 32px;
    background: #2e7d32;
    border-radius: 4px;
}

.see-all-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: #e8f5e9;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.see-all-link:hover {
    background: #2e7d32;
    color: white;
    transform: translateX(3px);
}

.horizontal-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 5px 25px 5px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
    transition: background-color 0.3s;
}

.horizontal-scroll-container:hover::-webkit-scrollbar-thumb {
    background-color: #a5d6a7;
}

.loading-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 12px;
    color: #888;
    font-weight: 500;
    border: 2px dashed #eee;
}

.partner-cta {
    background-color: #f9f9f9;
    padding: 5rem 1rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.partner-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.partner-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.partner-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-partner {
    display: inline-block;
    background: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-partner:hover {
    background: #000;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .features-row {
        flex-direction: column;
        margin-top: -2rem;
        gap: 1rem;
    }

    .feature-item {
        width: 100%;
        box-sizing: border-box;
    }
}