.toggle-container {
    background: white;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.toggle-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #333;
}
@media (min-width: 767px) {
    .toggle-btn {
        padding: 12px 32px;
    }
}
.toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.content-section {
    display: none;
    /* color: white; */
    /* text-align: center; */
    /* font-size: 48px; */
    /* font-weight: bold; */
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 991px) {
    .content-section h3 {
        font-size: 32px !important;
    }   
}