    .tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        border-bottom: 2px solid #ddd;
    }
    .tab {
        padding: 15px 20px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: #555;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }
    .tab.active, .tab:hover {
        color: #d5d52b;
        border-bottom-color: #d5d52b;
    }
    .content-sections .content-section {
        display: none;
        padding: 20px;
        border-radius: 5px;
    }
    .content-sections .content-section.active {
        display: flex;
        align-items: center;
    }
    .content-section .left {
        flex: 1;
        padding-right: 20px;
    }
    .content-section .right {
        flex: 1;
        text-align: center;
    }
    .content-section h2 {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
    .content-section p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }
    .content-section ul {
        list-style: none;
        padding: 0;
        margin-top: 15px;
    }
    .content-section ul li {
        font-size: 16px;
        color: #555;
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }
    .content-section ul li::before {
        content: '✔';
        color: #d5d52b;
        position: absolute;
        left: 0;
    }
    .content-section .right img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
