.hero-newsletter {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 50%, #48c9b0 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 50%),
                            radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-newsletter .container {
    position: relative;
    z-index: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-newsletter h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-newsletter .tagline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.content-wrapper{
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.newsletter-card {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #16a085 0%, #1abc9c 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    border-top-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.3);
}

.benefit-card:hover .benefit-icon,
.benefit-card:hover h3,
.benefit-card:hover p {
    color: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.benefit-card p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.info-boxes {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.info-box {
    padding: 20px 25px;
    background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
    border-radius: 12px;
    border-left: 5px solid #16a085;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-text {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.form-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #16a085 0%, #1abc9c 100%);
    border-radius: 2px;
}

.form-section h2 span {
    color: #16a085;
}

@media (max-width: 768px) {
    .hero-newsletter {
        padding: 80px 20px 60px;
    }

    .newsletter-card {
        padding: 35px 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .hero-badges {
        gap: 10px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .info-box {
        padding: 15px 20px;
    }
}