body {
	margin: 0;
	font-family: 'poppins', sans-serif;
	
}

/* Navbar Styles */
.navbar {
    background: #ffffff;
    margin: 0;
    padding: 20px 30px;
}


.navbar-brand {
    font-size: 14pt;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.navbar-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-item {
    margin-right: 10px;
}

.nav-link {
    padding: 10px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #06D001;
}

.nav-link.active {
    color: #06D001 !important; /* Menambahkan !important untuk memastikan prioritas */
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Toggler Button Styles for Mobile */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Custom Container Fluid */
.container-fluid {
    max-width: 1200px; /* Contain content to a maximum width */
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-image {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover; 
    z-index: -1;
}

.main-text{
    font-weight: lighter;
    font-size: 1.5rem; /* Sedikit mengecilkan untuk responsif */
}

.hero-text {
    position: absolute;
    bottom: 50%;
    left: 5%;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 2.5rem; /* Menyesuaikan ukuran font */
    font-weight: bold;
    justify-content: center;
}

.hero-text span {
    display: block;
}


.accordion {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion button {
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion button:hover {
    background-color: #e0fcd8;
}

.accordion button[aria-expanded="true"] {
    background-color: #d2fec5;
}

.accordion .icon::after {
    content: '\002B'; /* "+" symbol */
    font-size: 1.25rem;
}

.accordion button[aria-expanded="true"] .icon::after {
    content: '\2212'; /* "-" symbol */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
    padding: 0 1rem;
}

.accordion-content p {
    padding: 1rem 0;
    margin: 0;
}

.footer {
	background-color: #000; 
	color: #06D001; 
	padding: 20px 50px;
	display: flex;
	justify-content: center; /* Memusatkan teks secara horizontal */
	align-items: center;
	text-align: center; /* Memastikan teks berada di tengah */
}

@media (max-width: 768px) {
    .footer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 12px;
    }
}