/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* NAVIGATION TABS */
.nav-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-link {
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-link:hover {
    color: #2c3e50;
}

.tab-link.active {
    color: #2980b9;
    border-bottom: 3px solid #2980b9;
    margin-bottom: -2px;
}

/* PAGE SECTION VISIBILITY */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 5px solid #2980b9;
    padding-left: 10px;
}

/* CONTENT LAYOUT (FOTO & TABEL) */
.page-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
}

/* PHOTO STYLE */
.photo-container {
    flex: 1;
    text-align: center;
    background: #fafafa;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 6px;
}

.profile-photo {
    width: 100%;
    max-width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #ddd; /* Warna pengganti sebelum foto dimasukkan */
    display: block;
    margin: 0 auto 10px;
}

.photo-caption {
    font-size: 0.9rem;
    color: #