/* CTA Section */
.cta-section {
    background: linear-gradient(-45deg, #e8d4cf, #f6ebe7, #d9c2b8, #a38f8c);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    text-align: center;
    padding: 40px 20px;
    width: 90vw;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #d08f7b;
}

.cta-title {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    color: #4a3b35;
    margin-bottom: 1rem;
}

.cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #4a3b35;
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-form input[type="email"] {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #d08f7b;
    border-radius: 5px;
    width: 250px;
}

.cta-form button {
    background: #d08f7b;
    color: #faf2e7;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-form button:hover {
    background-color: #d08f7b;
    transform: translateY(-3px);
}
