.community-cta-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    background-color: white;
    /* Explicitly set to white as requested */
}

.cta-banner {
    position: relative;
    width: 1280px;
    height: 384px;
    max-width: 95%;
    /* Responsive width */
    background-image: url('../../images/cta/community_bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

.cta-buttons .btn-primary {
    background-color: #ff6600;
    /* Orange */
    color: white;
}

.cta-buttons .btn-primary:hover {
    background-color: #e65c00;
}

.cta-buttons .btn-secondary {
    background-color: white;
    color: #ff6600;
}

.cta-buttons .btn-secondary:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .cta-banner {
        height: auto;
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}