/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo img {
    height: 60px;  /* Atur tinggi logo */
    width: auto;  /* Menyesuaikan proporsi */
    display: block;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

header {
    background-color: #2e8b57;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #1e6844;
}

/* Hero Section */
.hero {
    background: url('hero-about.jpg') no-repeat center center/cover;
    position: relative;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    color: #ffffff;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8), 0px -1px 3px rgba(255, 255, 255, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.8), 0px -1px 3px rgba(255, 255, 255, 0.2);
}

.hero .btn {
    background-color: #2e8b57;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #1e6844;
}

/* About Us Section */
.about {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2e8b57;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    line-height: 1.8;
}

.about img {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Facts Section */
.facts {
    background-color: #fff;
    padding: 50px 20px;
}

.facts h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.fact-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fact-item h3 {
    font-size: 36px;
    color: #2e8b57;
    margin-bottom: 10px;
}

.fact-item p {
    font-size: 16px;
    color: #555;
}  


/* Vision and Mission Section */
.vision-mission {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
}

.vision-mission h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2e8b57;
    text-align: center;
}

.vision-mission .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-mission .grid div {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vision-mission .grid div h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2e8b57;
}

.vision-mission .grid div p {
    font-size: 1rem;
    color: #555;
}

/* CTA Section */
.cta {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background-color: white;
    color: #2e8b57;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.cta .btn:hover {
    background-color: #f4f4f4;
    color: #1e6844;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .vision-mission .grid {
        grid-template-columns: 1fr;
    }

    .quick-facts .facts-grid {
        grid-template-columns: 1fr;
    }
}
