/* Newsletter Page Styles */

.newsletter-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.newsletter-icon-large {
    margin-bottom: 1.5rem;
}

.newsletter-icon-large img {
    max-height: 120px;
    width: auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Signup Form Card */
.newsletter-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: #999;
}

/* Benefits Section */
.newsletter-benefits {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
}

.newsletter-benefits h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Form Styles */
.newsletter-form-card .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.newsletter-form-card .form-control:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.15);
}

.newsletter-form-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-navy);
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-hero {
        padding: 2.5rem 0 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-form-card {
        padding: 1.5rem;
    }

    .newsletter-icon-large img {
        max-height: 90px;
    }
}
