index.css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px; 
}

.icon img {
    width: 50px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: bold;
    position: relative;
}

.navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #333;
    transition: width .3s;
}

.navbar a:hover::after {
    width: 100%;
}

.navbtn a, .navbtn button {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.navbtn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 10px;
}



/* Home Section */
.home {
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
}

.home h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.home h3 {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.home button {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.home button:hover {
    background: #555;
}

.home button a {
    color: #fff;
    text-decoration: none;
}

/* About Us Section */
.aboutbg {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    flex-wrap: wrap; 
}

.about-logo {
    flex: 0 0 auto; 
}

.about-logo img {
    width: 500px;
    height: auto;
}

.about-text {
    flex: 1; /* Memungkinkan teks untuk menggunakan ruang yang tersedia */
    max-width: 600px; /* Membatasi lebar teks */
}

.about-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left; /* Mengatur teks menjadi rata kiri */
}

.about-text button {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    transition: background 0.3s;
}

.about-text button:hover {
    background: #555;
}

.image-caption {
    text-align: center; /* Membuat teks berada di tengah */
    font-size: 14px; /* Mengatur ukuran teks */
    color: #6573cd; /* Warna teks */
    margin-top: 10px; /* Jarak antara gambar dan teks */
}


/* Contact Section */
#contact {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
}

#contact h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contactus {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contactus div {
    margin: 20px;
    text-align: center;
}

.contactus img {
    width: 50px;
    margin-bottom: 10px;
}

