



/* Section 1: DCD Academy */
.academy-intro {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display:flex;
    padding-top: 100px;
}

.academy-intro h1 {
    font-size: 28px;
    margin-bottom: 10px;
}


/* Tombol */
.buttons {
    margin: 15px 10PX;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.primary {
    background: #007bff;
    color: white;
}

.secondary {
    background: #6f42c1;
    color: white;
}

.btn:hover {
    color: yellow;
}


/* Section 2: Kenapa Harus DCD Academy */
.why-choose {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
}

/* Fitur */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.feature {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    width: 240px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    justify-content: center;
}

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

.feature h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Atur tampilan PengajarBox agar berada di tengah */
.PengajarBox {
    width: 100%;
    margin: 20px auto;
    padding-top: 80px;
    padding-bottom: 30px;
}

/* Styling untuk setiap section */
.section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    margin: 20px;
}

/* Styling untuk judul */
.title {
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    color: white;
    text-align: left;
}

.mentor {
    background-color: #0066cc;
}

.fasilitator {
    background-color: #003399;
}

/* Tampilan konten */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Styling gambar */
.content img {
    height: 400px;
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
}

/* Styling teks */
.text {
    max-width: 60%;
}

.text h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.text p {
    font-size: 14px;
    color: #555;
}


/* Responsif */
@media (max-width: 770px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .academy-intro {
        display: flex;
        flex-direction: column-reverse;
    }

    .PengajarBox {
        margin: none;
    }

    .section {
        padding: none;
    }

    .content {
        flex-direction: column;
        gap: none;
        padding: none;
    }
    
    .content img {
        height: 280px;
        width: 210px;
    }
}

