:root {
    --primary-color: #97bc17;
    --primary-hover: #7ea314;
    --secondary-color: #2a2e0a;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --top-bar-bg: #e1ece3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}




.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(151, 188, 23, 0.3);
}

.btn--large {
    padding: 16px 40px;
}



/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Info Banner */
.info-banner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}


.info-banner-content {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.info-text p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

.faq-section::before {
    display: none;
}

.faq-section {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.faq-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    margin-bottom: 10px;
    min-height: 80px;
}

.faq-icon-large {
    width: 64px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.faq-head h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #252a01;
}

.faq-image {
    width: 100%;
    margin-bottom: 15px;
}

.faq-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.faq-content {
    padding: 15px 0;
}

.faq-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #252a01;
    padding-left: 20px;
    border-left: 1.5px solid #ccc;
}



/* Responsive */
@media (max-width: 1600px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .welcome-content h1 {
        font-size: 28px;
    }
}