/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    color: #346f21;
    font-weight: 700;
    font-size: 24px;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover {
    color: #346f21;
}

.main-section {
    padding: 80px 0px;
}

/* Hero section */
.hero {
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #346f21;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #275218;
}

/* Solutions section */
.solutions {
    padding: 80px 0;
}

.solutions-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.solutions-image {
    flex: 1;
}

.solutions-text {
    flex: 1;
}

.solutions h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Values section */
.values {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.values-container {
    display: flex;
    gap: 40px;
}

.value-column {
    flex: 1;
}

.values h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.values-list li {
    margin-bottom: 15px;
}

/* Services section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Expansion section */
.expansion {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.expansion-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.expansion-text {
    flex: 2;
}

.expansion-image {
    flex: 1;
}

.expansion h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Academy section */
.academy {
    padding: 80px 0;
    text-align: center;
}

.academy h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.academy-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.academy-courses {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    text-align: left;
}

.course-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.course-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* FAQ section */
.faq {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.faq h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background-color: #346f21;
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 2px;
    height: 12px;
    transition: all 0.3s;
}

.faq-icon::after {
    width: 12px;
    height: 2px;
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

/* Contact section */
.contact {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-image {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 15px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact textarea {
    height: 150px;
    resize: none;
}

.contact button {
    align-self: stretch;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #346f21;
    color: #fff;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: 20px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    padding: 20px;
    z-index: 2000;
    transition: all 0.3s;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
}

.cookie-popup.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-popup h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-popup p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-reject,
.btn-accept {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.btn-reject {
    background-color: #346f21;
    color: #fff;
}

.btn-accept {
    background-color: #346f21;
    color: #fff;
}

/* Thank you page */
.thank-you {
    padding: 100px 0;
    text-align: center;
}

.thank-you h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .services-grid,
    .academy-courses {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-content,
    .expansion-content,
    .contact-container {
        flex-direction: column;
    }
    
    .values-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s;
        opacity: 0;
        visibility: hidden;
    }
    
    .menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .services-grid,
    .academy-courses {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    section {
        padding: 60px 0;
    }
}