.ex-experience-container {
            display: flex;
            gap: 0;
            background-color: var(--bg-color);
            border: 3px solid var(--bg-secondary);
            border-radius: 15px;
            overflow: hidden;
            min-height: 500px;
            margin: 0 auto;
            margin-top: var(--margin-top-botton);
            max-width: var(--max-width);
            width: 100%;
        }

        .ex-text-section {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
            color: var(--text-color);
        }

        .ex-text-content {
            font-size: 18px;
            line-height: 1.8;
            text-align: justify;
            color: var(--text-dis-dark);
            font-weight: 600;
            min-height: 300px;
            position: relative;
        }

        /* .ex-text-content::after {
            content: '|';
            animation: blink 0.7s infinite;
            margin-left: 2px;
        } */

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .ex-buttons-section {
            width: 280px;
            padding: 60px 30px;
            display: flex;
            flex-direction: column;
            gap: 50px;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
        }

        .ex-experience-btn {
            width: 100%;
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            border: 3px solid var(--bg-secondary);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: transparent;
            color: #1a3a52;
        }

        .ex-experience-btn.active {
            background-color: var(--bg-secondary);
            color: white;
        }

        .ex-experience-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 58, 82, 0.2);
        }

        .ex-experience-btn:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ex-experience-container {
                width: var(--mobile-margin-rl);
                flex-direction: column;
            }

            .ex-text-section {
                border-right: none;
                padding: 40px 30px;
            }

            .ex-buttons-section {
                width: 100%;
                padding: 40px 30px;
            }

            .ex-text-content {
                font-size: 16px;
                min-height: 250px;
            }

            .ex-experience-btn {
                font-size: 18px;
            }
        }

        
@media (max-width: 480px) {
    .ex-experience-container {
        flex-direction: column;
        border-radius: 10px;
        min-height: auto;
        max-width: var(--mobile-margin-rl);
    }

    .ex-text-section {
        border-right: none;
        padding: 30px 20px;
    }

    .ex-text-content {
        font-size: 14px;
        line-height: 1.6;
        min-height: 200px;
    }

    .ex-buttons-section {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 30px 20px;
        gap: 15px;
        
    }

    .ex-experience-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
        font-weight: bold;
        
    }
}