


.tentang {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 60px 0 150px;
    background-color: #ffffff;
}

.tentang-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 80%;
    max-width: 1200px;
    gap: 40px;
}

.container-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.container-box:hover {
    transform: translateY(-5px);
}

.container-box h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
    position: relative;
    padding-bottom: 10px;
}

.container-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.container-box.history h2::after {
    width: 115px;
}

.container-box.organization h2::after {
    width: 290px;
}

.container-box h3 {
    color: #34495e;
    margin: 20px 0 10px;
    font-size: 1.4em;
}

.content-box {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
}

.content-box.history {
    display: flex;
}

.content-box .content-2 {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.content-box .content-2 img {
    height: 300px
}

@media (max-width: 1280px) {
    .content-box .content-2 img {
        height: 200px
    }
}

@media (max-width: 1100px) {
    .content-box.history {
        flex-direction: column-reverse;
        align-items: center;
    }

    .content-box .content-2 img {
        margin-bottom: 30px;
    }
}


.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-section, .mission-section {
    padding: 20px;
}

.vision-section p {
    /* font-size: 1.1em; */
    line-height: 1.6;
    color: #2c3e50;
}

.mission-section ul {
    padding-left: 20px;
}

.mission-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #2c3e50;
}

.history p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

.org-section {
    margin-bottom: 25px;
}

.org-members {
    padding: 15px;
}

.org-members p {
    margin-bottom: 10px;
    color: #2c3e50;
}

.org-members ul {
    list-style: none;
    padding: 0;
}

.org-members li {
    margin-bottom: 8px;
    color: #2c3e50;
}

.org-members strong {
    color: #34495e;
    margin-right: 8px;
}

.org-chart {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.level {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.level a {
    text-decoration: none;
}

.box {
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 250px;
    border: 2px solid #3b49df33;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    position: relative;
}

.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.box h3 {
    color: #3b49df;
    margin-bottom: 10px;
    font-size: 1.2em;
    padding-bottom: 5px;
    border-bottom: 2px solid #3b49df33;
}

.box p {
    color: #2c3e50;
    margin: 5px 0;
    font-size: 0.9em;
}

/* Lines */
.vertical-line {
    width: 2px;
    height: 40px;
    background-color: #3b49df80;
    transition: opacity 0.3s ease;
}

.horizontal-line {
    width: 62.3%;
    height: 2px;
    background-color: #3b49df80;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.vertical-connector {
    width: 2px;
    height: 20px;
    background-color: #3b49df80;
    transition: opacity 0.3s ease;
}

/* Executives Level */
.executives {
    width: 100%;
    max-width: 1200px;
}

.exec-boxes {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0 40px;
    gap: 20px;
}

.exec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Effects */
/* .box:hover + .vertical-line,
.box:hover ~ .vertical-connector,
.exec-item:hover .vertical-connector,
.level:hover .vertical-line,
.executives:hover .horizontal-line {
    opacity: 0;
} */

@media (min-width: 1450px) {

    
}

@media (min-width: 1245px) {
    .horizontal-line {
        width: 63.2%;
    }
}

@media (max-width: 1224px) {
    .exec-boxes {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .horizontal-line {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .box {
        min-width: 200px;
    }

    .vertical-line {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .tentang-container {
        width: 90%;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .container-box {
        padding: 20px;
    }
}