/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--second-color) 0%, #0a1a3a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15,115,238,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.newsletter-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Geom', sans-serif;
}

.newsletter-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    transition: linear .3s all;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--main-color);
    background-color: rgba(0,0,0,0.3);
    color: white;
}

.newsletter-form button {
    padding: 14px 30px;
    background: var(--main-color);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0a5ed1;
    transform: translateY(-2px);
}
@media (max-width: 768px) {    
    .newsletter-form {
        flex-direction: column;
    }
}