/* Basic reset & fonts */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color: #333; background: #f9f9f9; }

/* Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-body { display: flex; min-height: calc(100vh - 140px); }

/* Header */
.site-header { background: #007748; color: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.logo { height: 50px; }
.top-nav .nav-btn {
color: #fff; text-decoration: none; margin-left: 15px; padding: 8px 14px;
border-radius: 4px; font-size: 0.95rem;
}
.top-nav .nav-highlight {
background: #ffba00; color: #333;
}

/* Sidebar */
.sidebar { width: 200px; background: #fff; padding: 20px; border-right: 1px solid #ddd; }
.sidebar ul { list-style: none; }
.sidebar a {
text-decoration: none; color: #007748; display: block; margin-bottom: 10px;
}
.sidebar a:hover { text-decoration: underline; }

/* Main content */
.main-content { flex: 1; padding: 20px; background: #fff; }
.main-content section { margin-bottom: 40px; }
h2 { color: #007748; margin-bottom: 10px; }

/* Gallery */
.gallery { display: flex; gap: 10px; }
.gallery img { flex: 1; border-radius: 5px; max-height: 200px; object-fit: cover; }

/* Buttons */
.cta-button, .btn-primary, .btn-secondary {
display: inline-block; text-decoration: none; border: none; cursor: pointer;
margin-top: 15px; font-size: 1rem; border-radius: 4px;
}
.cta-button, .btn-primary { background: #ffba00; color: #333; padding: 10px 18px; }
.btn-secondary { background: transparent; color: #007748; padding: 8px 16px; border: 2px solid #007748; }
.btn-secondary:hover, .cta-button:hover, .btn-primary:hover { opacity: 0.9; }

/* Board members */
.board-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 20px; }
.board-member { background: #f0f0f0; padding: 10px; border-radius: 4px; text-align: center; }

/* Form elements */
form input, form textarea {
width: 100%; padding: 8px; margin-top: 5px; border: 1px solid #ccc; border-radius: 3px;
}
form label { font-weight: bold; margin-top: 10px; display: block; }

/* Footer */
.site-footer { background: #f1f1f1; text-align: center; padding: 20px 0; font-size: 0.9rem; margin-top: auto; }
