/* ============================
   RESET & BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    background: #f4f4f4;
    color: #333;
}

/* ============================
   TYPOGRAPHY
============================ */
h1 {
    font-size: 36px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

a {
    text-decoration: none;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #0b6623;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* ============================
   LOGO
============================ */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: bold;
}

.logo span {
    color: #90ee90;
}

/* ============================
   NAVIGATION LINKS
============================ */
nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

nav a.active {
    border-bottom: 2px solid #90ee90;
}

/* ============================
   LANGUAGE SWITCH
============================ */
.language-switch {
    margin-left: 20px;
}

.language-switch a {
    color: #90ee90;
    text-decoration: none;
    font-weight: bold;
}

.language-switch button {
    margin-left: 5px;
    padding: 5px 12px;
    cursor: pointer;
    border: none;
    background: white;
    color: #0b6623;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.language-switch button:hover {
    background: #e8f5e9;
}

/* ============================
   BUTTONS
============================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #0b6623;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    background: #094d1a;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #0b6623;
}

/* ============================
   FOOTER
============================ */
.footer {
    background-color: #0b6623;
    color: white;
    padding: 50px 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.footer-content div {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    color: #90ee90;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 8px 0;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    width: 90%;
    max-width: 1400px;
    margin: 20px auto 0;
}

/* ============================
   SHARED UTILITIES
============================ */
.section-title {
    text-align: center;
    color: #0b6623;
    margin-bottom: 20px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: #0b6623;
    margin: 15px auto 40px;
    border-radius: 10px;
}

/* ============================
   SHARED ANIMATIONS
============================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE - SHARED
============================ */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    nav {
        justify-content: center;
        gap: 10px;
    }

    nav a {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.cta-section{
    background:
        linear-gradient(rgba(11,102,35,0.9),
        rgba(11,102,35,0.9)),
        url("../images/about2.jpg");

    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content{
    max-width: 900px;
    margin: auto;
}

.cta-content h2{
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p{
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}