#section-change-information {
    padding: 80px 5%;
    background-color: #fafafa;
}

.header-center {
    text-align: center;
    margin-bottom: 50px;
}

.header-center h2 {
    margin-top: 10px;
}

.sub-title-inf {
    color: var(--ocean-blue2);
    font-weight: 700;
    font-size: 0.9rem;
    background: #9ec6f32d;
    padding: 5px 0px;
    border-radius: var(--border-pt);
    margin-bottom: 10px;
}

.change-information-area {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    max-width: 1024px;
    margin: 0 auto;
}

.tabs-navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-btn {
    background: white;
    border: 1px solid #eee;
    padding: 20px 25px;
    text-align: left;
    border-radius: var(--border-pt);
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.2rem;
    color: #888;
}

.tab-btn.active {
    background: var(--ocean-blue2);
    color: white;
    border-color: var(--ocean-blue2);
    box-shadow: 0 10px 20px #9ec6f367;
}

.tab-btn.active i {
    color: white;
}

.tab-btn:hover:not(.active) {
    border-color: var(--berry-crush-light);
    color: var(--berry-crush-light);
}

.tab-btn:hover i {
    color: var(--berry-crush-light);
}

.tab-content-display {
    background: white;
    border-radius: var(--border-pt);
    height: 400px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.content-wrapper {
    display: flex;
    height: 100%;
    gap: 40px;
    align-items: center;
}

.image-box {
    flex: 1;
}

.image-box img {
    width: 360px;
    border-radius: var(--border-pt);
    object-fit: cover;
    height: 360px;
}

.text-box {
    flex: 1;
}

.text-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #222;
}

.text-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.check-list i {
    color: var(--ocean-blue2);
}

.btn-learn-more {
    display: inline-block;
    background: var(--ocean-blue2);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-pt);
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.3s;
}

.btn-learn-more:hover {
    color: var(--berry-crush-light);
    background-color: transparent;
    border: 1px solid var(--berry-crush-light);
}

.tab-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1280px) {
    #section-change-information {
    padding: 80px 1%;
}
}

@media (max-width: 1024px) {
    .change-information-area {
        grid-template-columns: 1fr;
        width: 70%;
    }
    .content-wrapper {
        flex-direction: column;
    }

    .tab-content-display {
        height: auto;
    }
}

@media (max-width: 768px) {
    .change-information-area {
        width: 90%;
    }
    .image-box img {
    height: 300px;
}
   
}