:root {
    --primary-color: #5B7C99;
    --secondary-color: #6B9080;
    --accent-color: #A4C3B2;
    --warm-accent: #E07A5F;
    --dark-color: #3D405B;
    --light-bg: #F4F1DE;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #7C9885 0%, #5B7C99 100%);
    padding: 20px 0;
}

.main-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.header-section {
    background: linear-gradient(135deg, #5B7C99 0%, #4A6278 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.header-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.profile-section {
    padding: 40px 20px;
}

.profile-image-wrapper {
    position: relative;
    padding: 15px;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.info-card {
    background: linear-gradient(135deg, #5B7C99 0%, #4A6278 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 5px 20px rgba(91, 124, 153, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h5 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.info-card p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.info-card strong {
    color: #CCE3DE;
}

.story-section {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.story-section h5 {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.story-section h5 i {
    color: var(--warm-accent);
    margin-right: 10px;
}

.needs-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 3px solid #A4C3B2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.needs-section h5 {
    color: #6B9080;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.needs-section ul {
    list-style: none;
    padding: 0;
}

.needs-section li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark-color);
    font-size: 1.1rem;
}

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

.needs-section li:before {
    content: "✓";
    color: #6B9080;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 15px;
}

.donation-section {
    background: linear-gradient(135deg, #5B7C99 0%, #6B9080 100%);
    border-radius: 0 0 20px 20px;
    padding: 50px 30px;
    margin-top: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.donation-section h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.donation-section>p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.donation-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.donation-card:hover {
    transform: translateY(-10px);
}

.donation-card h5 {
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.donation-card h5 i {
    color: var(--warm-accent);
    margin-right: 10px;
}

.donation-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-donation-single {
    background: linear-gradient(135deg, #E07A5F 0%, #C76550 100%);
    border: none;
    color: white;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(224, 122, 95, 0.3);
}

.btn-donation-single:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.5);
    background: linear-gradient(135deg, #C76550 0%, #E07A5F 100%);
}

.btn-scholarship {
    background: linear-gradient(135deg, #6B9080 0%, #5A7A6B 100%);
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 144, 128, 0.3);
    margin-bottom: 10px;
}

.btn-scholarship:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 144, 128, 0.5);
    background: linear-gradient(135deg, #5A7A6B 0%, #6B9080 100%);
}

.impact-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #1E40AF;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.footer-note i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #93C5FD;
}

@media (max-width: 768px) {
    .header-section h1 {
        font-size: 2rem;
    }

    .donation-section h3 {
        font-size: 2rem;
    }

    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}