/* Header Styles */
header {
    background: linear-gradient(135deg, #1a3f2c, #2d6a4f);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-content img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.header-content img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-content h1 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex: 1;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #4db6ac;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-content img {
        width: 80px;
        height: 80px;
    }

    .header-content h1 {
        font-size: 1.8rem;
        margin: 15px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav ul li a {
        display: block;
        text-align: center;
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.1);
    }
}



/* Donation Page Styles */
.donate-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff, #f6f9f8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.donate-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.donate-header h2 {
    font-size: 2.8rem;
    color: #1a3f2c;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.donate-header p {
    font-size: 1.3rem;
    color: #557669;
    line-height: 1.6;
}

.donate-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.donate-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 63, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.donate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #1a3f2c, #4db6ac);
}

.donate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.donate-image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 25px;
    border-radius: 15px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid rgba(26, 63, 44, 0.1);
}

.donate-text {
    font-size: 1.8rem;
    color: #1a3f2c;
    margin: 20px 0;
    font-weight: 700;
}

.phone-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d6a4f;
    margin: 15px 0;
    direction: ltr;
    padding: 10px;
    background: rgba(77, 182, 172, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.donation-info {
    margin-top: 60px;
    padding: 40px;
    background: rgba(26, 63, 44, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(26, 63, 44, 0.1);
}

.donation-info h3 {
    color: #1a3f2c;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-right: 20px;
}

.donation-info h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: #1a3f2c;
    border-radius: 2px;
}

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

.donation-info ul li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #557669;
}

.donation-info ul li::before {
    content: "•";
    color: #4db6ac;
    font-size: 1.8rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-section {
        margin: 20px;
        padding: 20px;
    }

    .donate-header h2 {
        font-size: 2rem;
    }

    .donate-text {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .donation-info {
        padding: 25px;
        margin-top: 40px;
    }
}
/* Header Styles */
header {
    background-color: #1a432e;
    padding: 20x ;
    position: center;
    width: auto;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;


}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: auto;
}

.header-content h1 {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    margin: 0;
    flex: 1;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #9dc5b7;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Add or update these styles */
.main-donate-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    display: block;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(26, 63, 44, 0.1);
}

/* Add this at the end of your file */

@media (max-width: 768px) {
    /* Header adjustments */
    .header-content {
        padding: 10px;
    }

    .header-content img {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .header-content h1 {
        font-size: 1.4rem;
        margin: 10px 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        text-align: center;
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    /* Donate image adjustments */
    .main-donate-image {
        width: 90%;
        height: auto;
        max-height: 300px;
    }

    /* Donate items adjustments */
    .donate-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .donate-item {
        padding: 20px;
        margin: 0 10px;
    }

    .donate-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .donate-text {
        font-size: 1.3rem;
    }

    .phone-number {
        font-size: 1.2rem;
        padding: 8px;
    }

    /* Section adjustments */
    .donate-section {
        margin: 15px;
        padding: 15px;
    }

    .donate-header h2 {
        font-size: 1.8rem;
    }

    .donate-header p {
        font-size: 1.1rem;
    }
}
