/* Global Styles */
:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #27ae60;
    --warning: #f39c12;
    --text: #333;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #f9f9f9;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 600;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight {
    color: var(--accent);
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

#branding {
    float: left;
}

#branding h1 {
    margin: 0;
    padding: 15px 0;
    font-size: 24px;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    padding: 20px 15px;
    position: relative;
}

nav ul li a {
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li.current a {
    color: var(--accent);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

#hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0 10px 15px;
}

/* Highlights Section */
#highlights {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.highlight-box {
    display: inline-block;
    width: 22%;
    margin: 0 1%;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.highlight-box h3 {
    color: var(--primary);
}

/* Newsletter */
#newsletter {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

#newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#newsletter h2 {
    margin-right: 20px;
}

#newsletter form {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
}

#newsletter input[type="email"] {
    padding: 12px;
    flex-grow: 1;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

#newsletter button {
    padding: 12px 25px;
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 40px 0 20px;
}

.footer-section {
    float: left;
    width: 30%;
    margin-right: 5%;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
    clear: both;
}
/* Add these styles to your existing style.css file */

/* Enhanced Card Styles with Shadows */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Testimonial Boxes */
.testimonial-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent);
}

.testimonial-box blockquote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.testimonial-box blockquote:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -15px;
}

.testimonial-box p {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Team Member Cards */
.team-member {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.team-member:hover {
    border-left-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Program Cards */
.program-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.program-icon {
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 2rem;
}

.program-content {
    padding: 25px;
    flex-grow: 1;
}

.program-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.program-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Donation Cards */
.donation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.donation-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.donation-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.amount-btn {
    background: var(--light);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.custom-amount {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.custom-amount input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100px;
}

.donate-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
}

/* Impact Boxes */
.impact-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.impact-desc {
    color: var(--text-light);
}

/* Support Cards */
.support-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.support-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Opportunity Boxes */
.opportunity-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.opportunity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.opportunity-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.opportunity-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.opportunity-box p {
    color: var(--text-light);
}

/* Grid Layouts */
.impact-grid, .opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* About Page Specific */
#about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#about-content {
    padding: 60px 0;
}

.about-main {
    float: left;
    width: 65%;
    padding-right: 30px;
}

.about-sidebar {
    float: right;
    width: 30%;
}

/* Contact Page Specific */
#contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#contact-main {
    padding: 60px 0;
}

.contact-form {
    float: left;
    width: 60%;
    padding-right: 30px;
}

.contact-info {
    float: right;
    width: 35%;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

/* Clearfix */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-main, .about-sidebar,
    .contact-form, .contact-info {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .about-sidebar, .contact-info {
        margin-top: 40px;
    }
    
    .donation-cards {
        flex-direction: column;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
    }
}/* Add these styles to your existing style.css file */

/* Enhanced Card Styles with Shadows */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Testimonial Boxes */
.testimonial-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent);
}

.testimonial-box blockquote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.testimonial-box blockquote:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -15px;
}

.testimonial-box p {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Team Member Cards */
.team-member {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.team-member:hover {
    border-left-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Program Cards */
.program-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.program-icon {
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 2rem;
}

.program-content {
    padding: 25px;
    flex-grow: 1;
}

.program-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.program-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Donation Cards */
.donation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.donation-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.donation-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.amount-btn {
    background: var(--light);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.custom-amount {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.custom-amount input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100px;
}

.donate-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
}

/* Impact Boxes */
.impact-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.impact-desc {
    color: var(--text-light);
}

/* Support Cards */
.support-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.support-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Opportunity Boxes */
.opportunity-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.opportunity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.opportunity-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.opportunity-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.opportunity-box p {
    color: var(--text-light);
}

/* Grid Layouts */
.impact-grid, .opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* About Page Specific */
#about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#about-content {
    padding: 60px 0;
}

.about-main {
    float: left;
    width: 65%;
    padding-right: 30px;
}

.about-sidebar {
    float: right;
    width: 30%;
}

/* Contact Page Specific */
#contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#contact-main {
    padding: 60px 0;
}

.contact-form {
    float: left;
    width: 60%;
    padding-right: 30px;
}

.contact-info {
    float: right;
    width: 35%;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

/* Clearfix */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-main, .about-sidebar,
    .contact-form, .contact-info {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .about-sidebar, .contact-info {
        margin-top: 40px;
    }
    
    .donation-cards {
        flex-direction: column;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
    }
}/* Add these styles to your existing style.css file */

/* Enhanced Card Styles with Shadows */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Testimonial Boxes */
.testimonial-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent);
}

.testimonial-box blockquote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.testimonial-box blockquote:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    left: -15px;
    top: -15px;
}

.testimonial-box p {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Team Member Cards */
.team-member {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.team-member:hover {
    border-left-color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Program Cards */
.program-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.program-icon {
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 2rem;
}

.program-content {
    padding: 25px;
    flex-grow: 1;
}

.program-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.program-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Donation Cards */
.donation-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.donation-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.donation-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.amount-btn {
    background: var(--light);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.custom-amount {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.custom-amount input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100px;
}

.donate-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
}

/* Impact Boxes */
.impact-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.impact-desc {
    color: var(--text-light);
}

/* Support Cards */
.support-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.support-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.support-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Opportunity Boxes */
.opportunity-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.opportunity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.opportunity-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.opportunity-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.opportunity-box p {
    color: var(--text-light);
}

/* Grid Layouts */
.impact-grid, .opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* About Page Specific */
#about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#about-content {
    padding: 60px 0;
}

.about-main {
    float: left;
    width: 65%;
    padding-right: 30px;
}

.about-sidebar {
    float: right;
    width: 30%;
}

/* Contact Page Specific */
#contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#contact-main {
    padding: 60px 0;
}

.contact-form {
    float: left;
    width: 60%;
    padding-right: 30px;
}

.contact-info {
    float: right;
    width: 35%;
}

.info-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

/* Clearfix */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
/* Add these new styles to your existing style.css */

/* Blog Page Styles */
#blog-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/blog-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#blog-main {
    padding: 60px 0;
}

.blog-posts {
    float: left;
    width: 65%;
    padding-right: 30px;
}

.blog-sidebar {
    float: right;
    width: 30%;
}

.blog-post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 5px;
    color: var(--accent);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: var(--text);
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: var(--accent);
}

.subscribe-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Gallery Page Styles */
#gallery-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('./images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#gallery-main {
    padding: 60px 0;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: var(--light);
    border: none;
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.video-thumbnail {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gallery-view {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-view {
    opacity: 1;
}

.gallery-load-more {
    text-align: center;
    margin-top: 30px;
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Program Details Expand/Collapse */
.program-details {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.program-details h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.program-details ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.program-details ul li {
    margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-posts, .blog-sidebar {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .blog-sidebar {
        margin-top: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-main, .about-sidebar,
    .contact-form, .contact-info {
        float: none;
        width: 100%;
        padding-right: 0;
    }
    
    .about-sidebar, .contact-info {
        margin-top: 40px;
    }
    
    .donation-cards {
        flex-direction: column;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #branding, nav {
        float: none;
        text-align: center;
    }

    nav ul li {
        display: block;
        padding: 10px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 0 auto 15px;
    }

    .highlight-box {
        width: 45%;
        margin: 0 2% 20px;
    }

    #newsletter .container {
        flex-direction: column;
    }

    #newsletter h2 {
        margin: 0 0 20px;
        text-align: center;
    }

    #newsletter form {
        width: 100%;
    }

    .footer-section {
        float: none;
        width: 100%;
        margin: 0 0 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .highlight-box {
        width: 90%;
        margin: 0 auto 20px;
    }
}