/* COLOR THEME */
:root {
    --green: #1a5e3f;
    --light-green: #e8f5e9;
    --blue: #0077b6;
    --light-blue: #d7f3ff;
    --text: #222;
    --bg: #f5f5f5;
}

/* GENERAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* LOGO */
.logo {
    width: 160px;
    margin-bottom: 15px;
    animation: fadeIn 2s ease-in-out;
}

/* HEADER */
header {
    background: var(--green);
    color: white;
    padding: 30px 10%;
    text-align: center;
    border-bottom: 5px solid var(--blue);
}

header nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

header nav ul li {
    margin: 10px 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: var(--light-blue);
}

/* SECTIONS */
.section {
    padding: 50px 10%;
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* HIGHLIGHT SECTIONS */
.highlight {
    background: var(--light-green);
}

/* AWARD BOX */
.award-box {
    background: var(--light-blue);
    padding: 20px;
    border-left: 5px solid var(--blue);
    margin: 20px 0;
    border-radius: 8px;
}

/* AWARD IMAGE */
.award-image {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* LEADERSHIP */
.leader {
    background: #f0f0f0;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid var(--green);
    border-radius: 6px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: var(--green);
    color: white;
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SCROLL REVEAL EFFECT */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
