.newsletter-section {
    padding: 2rem 1rem;
    background-color: #ffffff;
    padding-left: 15rem;
    padding-right: 15rem;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.newsletter-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e1b4b;
    margin-top: 1rem;
}

.newsletter-description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.newsletter-link {
    color: #4f46e5;
    text-decoration: underline;
}

.form-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-heading {
    font-size: 1.5rem;
    color: #3730a3;
    margin-bottom: 1rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

.subscribe-button {
    background-color: #4f46e5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.subscribe-button:hover {
    background-color: #4338ca;
}

.shadow-all-sides {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); 
    transition: box-shadow 0.3s ease;
}

.shadow-all-sides:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    
}
