body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

header {
    background: url('/media/background.jpg') no-repeat center center/cover;
    height: 100%;
    position: relative;
}

header .overlay {
    background-color: rgba(255, 255, 30, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    width: 20%;
    height: auto;
}

.header-content {
    padding: 2rem;
    color: white;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-content .container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

header nav {
    margin-left: auto;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 1rem;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 3em;
    text-shadow: 1px 1px 3px maroon, 1px 1px 3px red;
    font-family: 'Montserrat', sans-serif;
}

p {
    color: black;
    font-family: Arial, sans-serif;
    color: black;
    font-size: 1.5em;
    text-shadow: 1px 1px 3px white, 1px 1px 3px white;

}

.section {
    padding: 2rem 0;
}

.section .container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #cc9900;
    margin-bottom: 1rem;
    font-size: 1.9em;
    text-align: center;
}

.section p {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 1.4em;

}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 70px;
    height: 70px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-image, .about-content {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-image img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.franchise-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.franchise-item {
    flex: 1;
    max-width: 30%;
    margin: 1rem;
    text-align: center;
}

.franchise-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.franchise-item p {
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    max-width: 30%;
    margin: 1rem;
    text-align: center;
}

.testimonial-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.testimonial-item p {
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.expert-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.expert-item {
    flex: 1;
    max-width: 30%;
    margin: 1rem;
    text-align: center;
}

.expert-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.expert-item p {
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.section-button {
    background-color: rgba(255, 255, 30, 1);
    border: none;
    border-radius: 30px;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    /* Penambahan properti untuk membuat tombol berada di tengah */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px; /* Menyesuaikan posisi vertical sesuai kebutuhan */
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        height: auto;
        padding-bottom: 2rem;
        height: 100%;
    }
    
    body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

    header .container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

    .logo {
        margin-top: 1rem;
        width: 300px;
    }

    .header-content {
        text-align: center;
        margin-top: 1rem;
        width: 90%;
        padding: 0;
        color: white;
    }
    
    h1 {
        font-size: 32px;
    }
    
    p {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 1.3em;
    text-shadow: 1px 1px 3px white, 1px 1px 3px white;
}

    header nav {
        display: none;
    }
    
    .section p {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 1em;
}

    .franchise-gallery,
    .testimonial-gallery,
    .expert-gallery {
        flex-direction: column;
        align-items: center;
    }

    .franchise-item,
    .testimonial-item,
    .expert-item {
        max-width: 80%;
    }
}

footer {
    display: block;
    unicode-bidi: isolate;
}

.section-button {
        position: relative; /* Kembali ke posisi relatif untuk penempatan sesuai alur dokumen */
        left: 65px;
        transform: none;
        margin-top: 20px; /* Menyesuaikan margin sesuai kebutuhan */
    }