* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.header {
    background: #00b34a;
    padding: 15px 0;
    color: #fff;
}

.logo {
    font-size: 20px;
}

/* HERO */
.hero {
    position: relative;
    height: 300px;
    background: url('../img/banner.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    max-width: 700px;
    line-height: 1.6;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.tabs a {
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    border-bottom: 3px solid transparent;
}

.tabs a.active {
    border-bottom: 3px solid #0b2c5f;
    font-weight: bold;
}

/* CONTENT */
.content {
    width: 80%;
    margin: 40px auto;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

/* =========================
   PROFIL PERUSAHAAN
========================= */
.profil-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    align-items: flex-start;
}

/* TEKS KIRI */
.profil-text {
    flex: 2;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.profil-text p {
    margin-bottom: 15px;
    text-align: justify;
}

/* FOTO KANAN */
.profil-foto {
    flex: 1;
    text-align: center;
}

.profil-foto img {
    width: 100%;
    max-width: 230px;
    background: #ff0000;       /* merah seperti contoh */
    border: 5px solid #2ecc71; /* hijau */
    border-radius: 6px;
}

/* CAPTION FOTO */
.profil-foto .caption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
}

.profil-foto .caption span {
    font-weight: bold;
}

/* =========================
   GALERI SEJARAH (SEJARAH SINGKAT)
========================= */
.sejarah-galeri {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ITEM */
.sejarah-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* FOTO */
.sejarah-item img {
    width: 170px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    border: 4px solid #2ecc71;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* TEKS */
.sejarah-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.sejarah-text strong {
    display: block;
    margin-bottom: 5px;
}

/* FOOTER */
.footer {
    background: #00b34a;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .profil-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .profil-text {
        order: 2;
    }

    .profil-foto {
        order: 1;
        margin-bottom: 20px;
    }
    
    .sejarah-galeri {
        grid-template-columns: 1fr;
    }
}