body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.hero {
    background: #4a6cff;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.navbar {
    background: #222;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    position: sticky;
    top: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover,
.navbar a.active {
    color: #4a6cff;
}

.content {
    padding: 60px 20px;
    min-height: 100vh;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.hero {
    background: #4a6cff;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.navbar {
    background: #222;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    position: sticky;
    top: 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover,
.navbar a.active {
    color: #4a6cff;
}

.content {
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
}

/* GAMBAR UTAMA */
.img-box {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin: 20px 0;
    border: 3px solid #4a6cff;
}

/* GALERI */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ddd;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* Tambahkan ke file style.css Anda */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-wrapper {
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.section-wrapper:last-child {
    border-bottom: none;
}

.content {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.profile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.profile-img {
    flex: 0 0 300px;
}

.profile-img .img-box {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.profile-details {
    flex: 1;
    min-width: 300px;
}

.profile-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 25px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-box .img-box {
    max-width: 400px;
    margin-bottom: 20px;
}