/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #6b8e3d;
}

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

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #8bc34a;
}

nav a.active {
    color: #8bc34a;
}

.donate-btn {
    background-color: #fbc02d;
    color: #333 !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #8bc34a;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 0;
}

.hero-placeholder {
    height: 300px;
    background-color: #ddd;
    margin-bottom: 0;
}

/* Main Content */
main {
    background-color: #fff;
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.main-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #666;
    font-size: 14px;
}

.main-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.main-content li {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.read-more-btn {
    display: inline-block;
    background-color: #8bc34a;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #7cb342;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.support-box {
    background-color: #8bc34a;
    padding: 30px;
    text-align: center;
    color: white;
}

.support-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.donate-image {
    margin: 20px 0;
    text-align: center;
}

.donate-image img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.donate-now-btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.donate-now-btn:hover {
    background-color: #555;
}

/* Priorities Section */
.priorities {
    background-color: #fff;
    padding: 40px 0;
}

.section-title {
    background-color: #fbc02d;
    color: #333;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.priority-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.priority-image {
    height: 200px;
    background-size: cover !important;
    background-position: center !important;
}

.priority-content {
    background-color: #8bc34a;
    padding: 20px;
    color: white;
}

.priority-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.priority-content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.priority-link {
    display: inline-block;
    background-color: #fff;
    color: #8bc34a;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.3s;
}

.priority-link:hover {
    background-color: #f5f5f5;
}

/* Info Sections */
.info-sections {
    background-color: #fff;
    padding: 40px 0;
}

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

.info-box {
    padding: 20px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.info-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.info-box ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.info-box li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.info-btn {
    display: inline-block;
    background-color: #8bc34a;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s;
}

.info-btn:hover {
    background-color: #7cb342;
}

/* Footer */
footer {
    background-color: #4a4a4a;
    color: #ccc;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #666;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-social-icon:hover {
    background-color: #8bc34a;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo a {
    display: inline-block;
    line-height: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #8bc34a;
}

.footer-btn {
    display: inline-block;
    background-color: #8bc34a;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s;
}

.footer-btn:hover {
    background-color: #7cb342;
}

.footer-bottom {
    background-color: #333;
    padding: 15px 0;
    text-align: center;
    font-size: 11px;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #8bc34a;
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8bc34a;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 3px;
    font-size: 20px;
    transition: background-color 0.3s;
}

.scroll-top:hover {
    background-color: #7cb342;
}

/* Page Header */
.page-header {
    background-color: #8bc34a;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

/* Sidebar Info Box */
.sidebar-info {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 20px;
}

.sidebar-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.sidebar-info ul {
    list-style: none;
    padding: 0;
}

.sidebar-info li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

.sidebar-info li:last-child {
    border-bottom: none;
}

.sidebar-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Full Width Content */
.main-content-full {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #666;
    text-align: center;
}

.programme-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.programme-section:last-child {
    border-bottom: none;
}

.programme-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.programme-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.programme-section ul {
    margin-left: 20px;
    margin-top: 15px;
}

.programme-section li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #8bc34a;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #555;
}

/* Priority Content Extended */
.priority-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.priority-content li {
    font-size: 12px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.priority-content li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form-section > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8bc34a;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #8bc34a;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7cb342;
}

/* Contact Info */
.contact-info-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-info-box:last-child {
    border-bottom: none;
}

.contact-info-box h3 {
    font-size: 18px;
    color: #8bc34a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.contact-info-box a {
    color: #8bc34a;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-box a:hover {
    color: #7cb342;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    color: #8bc34a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover {
    color: #7cb342;
}

/* Map Section */
.map-section {
    background-color: #fff;
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .priorities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .priorities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .programme-section h2 {
        font-size: 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
}
