* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: url("/images/hero-bg-light.webp") no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* ==== */
.logoUPTD {
    width: 300px;
    height: 300px;
    object-fit: contain;
}
.logoUPTD-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
.logoUPTD-visiMisi {
    width: 200px;
    object-fit: contain;
}
.company-name {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: black;
}
.registration-info {
    text-align: center;
    font-size: 15px;
    color: black;
    margin-bottom: 5px;
}
.horizontal-line {
    height: 4px;
    background-color: #009241;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 25px;
    border-radius: 2px;
}
.content-section {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
    text-align: justify;
}
.section {
    flex: 1 1 400px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.section-title {
    font-size: 23px;
    font-weight: 700;
    color: #009241;
    margin-bottom: 10px;
    border-bottom: 2px solid #009241;
    display: inline-block;
    padding-bottom: 5px;
}
.section-content {
    font-size: 15px;
    color: #555;
}
.section-content li {
    margin-bottom: 10px;
}
.combined-content-section {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.combined-content {
    flex: 1 1 850px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.combined-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.combined-title {
    font-size: 23px;
    font-weight: 700;
    color: #009241;
    margin-bottom: 15px;
    border-bottom: 2px solid #009241;
    display: inline-block;
    padding-bottom: 5px;
}
.combined-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}
.tugas-fungsi-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.org-structure {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
}
.org-structure__container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
}
.org-structure__empty {
    width: 100%;
    max-width: 1100px;
    background-color: #ffffff;
    border: 1px dashed #c7c7c7;
    border-radius: 10px;
    color: #666;
    padding: 18px 20px;
    text-align: center;
}
.org-structure__img {
    width: 100%;
    height: auto;
    max-width: 1100px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: zoom-in;
}
.org-structure__img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.org-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1920;
}
.org-modal.show {
    display: flex;
}
.org-modal__content {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 10px;
    animation: org-zoom-in 0.25s ease;
}
.org-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 34px;
    line-height: 1;
    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 1060;
    transition: color 0.2s ease;
}
.org-modal__close:hover {
    color: #ff4d4f;
}

body.org-no-scroll {
    overflow: hidden;
}

@keyframes org-zoom-in {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .org-structure__img,
    .org-modal__content {
        transition: none;
        animation: none;
    }
}

.org-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px; 
    box-sizing: border-box;
}

.org-modal__content {
    max-width: 92vw;
    max-height: calc(100vh - 120px); 
    border-radius: 10px;
    animation: org-zoom-in 0.25s ease;
    cursor: zoom-out;
}

@media (max-width: 768px){
    .container{ padding: 24px 16px; }
    .logoUPTD{ width: 140px; height: 140px; }
    .company-name{ font-size: 2rem; }
    .combined-content-section{
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }
    .tugas-fungsi-image{
      flex: 0 0 100% !important;
      max-width: 100% !important;
      justify-content: center;
      align-items: center;
    }
    .tugas-fungsi-image img,
    .img-tugas{
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .section{ flex: 1 1 100%; }
    .combined-text, .section-content{ font-size: 0.95rem; }
  }
.combined-content-section{
    display: flex;
    gap: 25px; 
    margin-bottom: 25px;
  }  
  .tugas-fungsi-image img,
  .img-tugas{
    border-radius: 12px;   
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
  }
  
