.stay-in-touch {
    width: 100%;
    padding: 2.25rem 1rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    opacity: 75%;
}

.stay-in-touch-inner {
    max-width: 580px;
    width: 100%;
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    background: rgba(10, 20, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    text-align: center;
}



.stay-in-touch p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.newsletter-form input[type="email"] {
    flex: 1 1 220px;
    max-width: 360px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    line-height: 1.2;
    border-radius: 9px;
    border: none;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.newsletter-form input[type="email"]::placeholder {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.45);
}

.newsletter-form button {
    flex: 0 0 auto;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    background-color: #ffd700;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.newsletter-form button:hover {
    background-color: #e6c200;
    transform: translateY(-1px);
}

.privacy-text {
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-top: 0.75rem;
}


.newsletter-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 30, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    color: #031e00;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: fadeInScale 0.3s ease;
}

.checkmark {
    font-size: 3rem;
    color: #57ce4e;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.close-modal {
    background-color: #031e00;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: #142e14;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .stay-in-touch {
        padding: 1.6rem 0.75rem 2rem;
    }

    .stay-in-touch-inner {
        padding: 1.1rem 1.1rem;
    }



    .stay-in-touch p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .newsletter-form input[type="email"] {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0.45rem 0.75rem;
        font-size: 0.85rem;
    }

    .newsletter-form input[type="email"]::placeholder {
        font-size: 0.8rem;
    }

    .newsletter-form button {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .privacy-text {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

}

.stay-in-touch h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
    color: #d0d0d0;
    font-family: 'Lora';
    font-weight: 600;
}
