.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.about-img {
    max-width: 50%;
    height: auto;
    border: 10px solid #13357B;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-text {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(img/about-img-1.png);
    padding: 20px;
    border: 50px solid transparent;
    border-image: linear-gradient(to right, transparent, #13357B) 1;
    font-family: 'Roboto', sans-serif;
    /* Gunakan font Roboto untuk teks sambutan */
}

.about-text h2 {
    font-size: 2.0rem;
    /* Menambahkan ukuran font yang lebih besar untuk judul */
    margin-bottom: 14px;
    font-family: 'Jost', sans-serif;
    /* Gunakan font Jost untuk judul */
}

.about-text p {
    font-size: 1.2rem;
    /* Memperbesar ukuran font untuk paragraf */
    line-height: 1.6;
    /* Menambah jarak antar baris untuk keterbacaan */
}

.image-container figure {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-container figcaption {
    font-size: 1rem;
    /* Ukuran font caption */
    color: #333;
    /* Warna font caption */
    margin-top: 10px;
    /* Jarak antara gambar dan caption */
    font-family: 'Roboto', sans-serif;
    /* Gunakan font Roboto untuk caption */
}

.about-text figcaption {
    font-weight: bold;
    /* Membuat caption menjadi bold */
}