body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; background: #f8f9fa; color: #222; }
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }
header { background: #fff; color: #207a3c; padding: 30px 0 10px 0; text-align: center; border-bottom: 3px solid #2e9e4d; }
header h1 { margin: 0; font-size: 2.5em; letter-spacing: 2px; color: #207a3c; }
header p { font-size: 1.1em; margin-top: 8px; color: #2e9e4d; }
nav { background: #2e9e4d; }
nav {
    background: linear-gradient(90deg, #2e9e4d 70%, #207a3c 100%);
    box-shadow: 0 4px 18px rgba(46,158,77,0.10);
    position: relative;
    z-index: 100;
}
nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
nav ul li { margin: 0 10px; }
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    display: block;
    border-radius: 8px;
    font-size: 1.08em;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 4px rgba(46,158,77,0.04);
    position: relative;
    overflow: hidden;
}
nav ul li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 3px;
    background: linear-gradient(90deg, #ffb300 0%, #fff 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}
nav ul li a:hover::after, nav ul li a.active::after, nav ul li a:focus::after {
    transform: scaleX(1);
}
nav ul li:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.10);
}
nav ul li a:focus {
    outline: 2px solid #ffb300;
    outline-offset: 2px;
}
nav ul li a:hover, nav ul li a:focus {
    background: #207a3c;
    color: #ffb300;
    box-shadow: 0 2px 12px rgba(46,158,77,0.13);
    outline: none;
}
nav ul li a.active {
    background: #17612a;
    color: #ffb300;
    box-shadow: 0 2px 12px rgba(46,158,77,0.18);
}
footer { background: #207a3c; color: #fff; text-align: center; padding: 18px 0; margin-top: 40px; }
.hero-modern {
    position: relative;
    background: #fff;
    color: #207a3c;
    padding: 80px 0 60px 0;
    text-align: center;
    font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
    border-bottom: 3px solid #2e9e4d;
    overflow: hidden;
}
.hero-modern .hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: background-image 1s;
    animation: fadeHeroBg 1s;
}
@keyframes fadeHeroBg { from { opacity: 0; } to { opacity: 1; } }
.hero-modern .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(46,158,77,0.22) 40%, rgba(32,122,60,0.22) 70%, rgba(0,0,0,0.18) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-modern .container {
    position: relative;
    z-index: 3;
}
.hero-modern h2 {
    font-size: 2.7em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1.2px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero-modern p.hero-subtitle {
    font-size: 1.18em;
    font-weight: 400;
    margin-bottom: 28px;
    color: #e9fbe9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero-modern .hero-cta {
    background: #ffb300;
    color: #207a3c;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(46,158,77,0.13);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    margin-top: 10px;
}
.hero-modern .hero-cta:hover {
    background: #ff8800;
    color: #fff;
    box-shadow: 0 4px 18px rgba(255,179,0,0.18);
}
@media (max-width: 800px) {
    .hero-modern { padding: 40px 0 30px 0; }
    .hero-modern h2 { font-size: 1.3em; }
}
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    background: linear-gradient(90deg, #f4fbf6 0%, #e9ecef 100%);
    padding: 32px 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(46,158,77,0.07);
}
.stat {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(46,158,77,0.10);
    padding: 28px 38px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    min-width: 160px;
    margin: 0 10px;
    overflow: hidden;
}
.stat:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 6px 24px rgba(46,158,77,0.18);
}
.stat .stat-icon {
    font-size: 2.5em;
    color: #2e9e4d;
    margin-bottom: 10px;
    display: block;
    animation: statIconPop 0.7s;
}
@keyframes statIconPop { 0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.counter {
    font-size: 2.7em;
    color: #207a3c;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Merriweather', Georgia, serif;
    animation: statCountFade 1.2s;
}
@keyframes statCountFade { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
.stats p {
    font-size: 1.08em;
    color: #2e9e4d;
    margin: 0;
    font-weight: 500;
}
section { margin-bottom: 40px; }
.latest-publications, .latest-announcements { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); padding: 20px; }
/* Hamburger menu styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2.1em;
    color: #207a3c;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
    z-index: 2001;
}

@media (max-width: 800px) {
    .container { padding: 10px; }
    .stats { flex-direction: column; gap: 20px; padding: 18px 0; }
    .hamburger { display: block; }
    nav ul {
        display: none !important;
        flex-direction: column;
        background: linear-gradient(180deg, #2e9e4d 80%, #207a3c 100%);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        box-shadow: 0 8px 24px rgba(46,158,77,0.13);
        z-index: 2000;
        animation: menuSlideDown 0.32s cubic-bezier(.4,0,.2,1);
        border-radius: 0 0 18px 18px;
    }
    nav ul.show {
        display: flex !important;
    }
    nav ul li { margin: 0; border-bottom: 1px solid #207a3c22; }
    nav ul li:last-child { border-bottom: none; }
    nav ul li a {
        padding: 22px 28px;
        border-radius: 0;
        font-size: 1.18em;
        background: none;
        text-align: left;
        min-width: 200px;
    }
    .main-header-inner { flex-direction: row; align-items: center; }
}

@keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}
}
form input, form textarea { width: 100%; padding: 10px; margin-bottom: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 1em; }
form button { background: #2e9e4d; color: #fff; border: none; padding: 10px 22px; border-radius: 4px; font-size: 1em; cursor: pointer; transition: background 0.2s; }
form button:hover { background: #207a3c; }
.gallery img { width: 180px; height: 120px; object-fit: cover; margin: 10px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.gallery img:hover { transform: scale(1.05); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.contact-form-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #e0e0e0;
    padding: 2.2em 2em 2em 2em;
    max-width: 480px;
    margin: 2em auto 2.5em auto;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.contact-form-box input, .contact-form-box textarea {
    width: 100%;
    padding: 0.9em 1em;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1.08em;
    background: #f8f8f8;
    margin-bottom: 0.2em;
    resize: vertical;
}
.contact-form-box textarea { min-height: 110px; }
.contact-form-box button {
    background: #207a3c;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 0.9em 2em;
    font-size: 1.08em;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form-box button:hover { background: #2e9e4d; }
.contact-info-box {
    background: #f4fbf6;
    border-radius: 12px;
    box-shadow: 0 2px 8px #e0e0e0;
    padding: 2em 2em 1.2em 2em;
    max-width: 480px;
    margin: 0 auto 2.5em auto;
    color: #207a3c;
    font-size: 1.08em;
    text-align: center;
}
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
  }
  nav ul li {
    margin: 0;
    border-bottom: 1px solid #207a3c22;
  }
  nav ul li:last-child {
    border-bottom: none;
  }
  nav ul li a {
    padding: 16px 18px;
    border-radius: 0;
    font-size: 1.08em;
    background: none;
    text-align: left;
  }
}