/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
    scroll-behavior: smooth;
}
.logo img {
    height: 60px;  /* Atur tinggi logo */
    width: auto;  /* Menyesuaikan proporsi */
    display: block;
}
body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: linear-gradient(45deg, #2e8b57, #3cb371);
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    text-decoration: none;
    color: white;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    color: #2e8b57;
    margin-bottom: 15px;
}

.testimonials p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* Google Reviews Section */
.google-reviews {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.google-reviews h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.google-reviews iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Review Button */
.review-button {
    text-align: center;
}

.review-button .btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #2e8b57;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.review-button .btn:hover {
    background-color: #3cb371;
}

/* Footer */
footer {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    border-top: 4px solid #3cb371;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 28px;
    }

    .testimonials p {
        font-size: 16px;
    }

    .google-reviews iframe {
        height: 300px;
    }

    .review-button .btn {
        font-size: 16px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .google-reviews iframe {
        height: 250px;
    }

    .review-button .btn {
        font-size: 14px;
        padding: 8px 12px;
    }
}
