.site-events-cta-section {
    background-color: var(--primary-color, #f9f7f5);
    text-align: center;
    padding: 4rem 2rem;
}

.site-events-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-events-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.site-events-cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color, #232323);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.site-events-cta-button:hover {
    background-color: #333;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form styling */
.site-events-cta-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.site-events-form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.site-events-email-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 1rem;
    font-size: 1rem;
    background-color: #fff;
}

.site-events-form-success {
    margin-top: 1rem;
    color: #28a745;
    font-weight: 500;
}

.site-events-form-error {
    margin-top: 1rem;
    color: #dc3545;
    font-weight: 500;
    font-size: 0.9rem;
}

.site-events-email-input.is-invalid {
    border-color: #dc3545;
}

/* Responsive styles */
@media (min-width: 768px) {
    .site-events-form-group {
        flex-direction: row;
        justify-content: center;
    }
    
    .site-events-email-input {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 60%;
    }
} 