
    .page-hero {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    
    .page-hero img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
    }
    
    .header-text-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 100%;
        padding: 20px;
        z-index: 2;
    }
    
    .header-text-overlay h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 10px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }
    
    .header-text-overlay p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }
    
    /* What Sponsorship Does Section - Artistic Design */
    .sponsorship-does-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    /* Decorative Lines - Red Color */
    .decorative-lines {
        position: absolute;
        left: 3%;
        top: 20%;
        width: 100px;
        height: 200px;
        opacity: 0.7;
        z-index: 1;
    }
    
    .decorative-lines-right {
        position: absolute;
        right: 3%;
        bottom: 15%;
        width: 120px;
        height: 180px;
        opacity: 0.7;
        z-index: 1;
    }
    
    .line {
        position: absolute;
        background: #e74c3c;
    }
    
    .line-1 { width: 2px; height: 100px; left: 0; top: 0; }
    .line-2 { width: 2px; height: 150px; left: 20px; top: 30px; }
    .line-3 { width: 2px; height: 80px; left: 40px; top: 10px; }
    .line-4 { width: 60px; height: 2px; left: 0; top: 100px; }
    .line-5 { width: 80px; height: 2px; left: 20px; top: 180px; }
    .line-6 { width: 40px; height: 2px; left: 40px; top: 140px; }
    
    .right-line-1 { width: 2px; height: 120px; right: 0; top: 0; }
    .right-line-2 { width: 2px; height: 100px; right: 20px; top: 50px; }
    .right-line-3 { width: 2px; height: 80px; right: 40px; top: 20px; }
    .right-line-4 { width: 70px; height: 2px; right: 0; top: 120px; }
    .right-line-5 { width: 90px; height: 2px; right: 20px; top: 150px; }
    
    .does-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 2;
    }
    
    .does-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .does-title h2 {
        font-size: 36px;
        font-weight: 800;
        color: #2c7a4d;
        margin-bottom: 10px;
    }
    
    .does-title span {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 10px;
    }
    
    .does-content {
        display: flex;
        align-items: center;
        gap: 50px;
        flex-wrap: wrap;
    }
    
    .does-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }
    
    .does-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
    }
    
    .does-image img:hover {
        transform: scale(1.03) rotate(1deg);
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    }
    
    .pop-image {
        animation: popIn 0.8s ease-out;
    }
    
    @keyframes popIn {
        0% {
            opacity: 0;
            transform: scale(0.7);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .does-text {
        flex: 1;
        min-width: 300px;
    }
    
    .does-text h3 {
        font-size: 28px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
    }
    
    .does-text p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }
    
    .highlight-box {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        border-left: 4px solid #3498db;
        padding: 20px;
        border-radius: 12px;
        margin-top: 25px;
    }
    
    .highlight-box p {
        margin: 0;
        font-style: italic;
        font-size: 16px;
        color: #2980b9;
        font-weight: 600;
    }
    
    .highlight-box i {
        color: #e74c3c;
        font-size: 18px;
    }
    
    /* Children Cards Grid */
    .children-section {
        width: 100%;
        margin: 0;
        padding: 60px 0;
        background: #faf6f0;
    }
    
    .children-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
        font-weight: 800;
        color: #2c7a4d;
    }
    
    .section-header span {
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
        color: #e67e22;
        margin-bottom: 10px;
    }
    
    /* Filter Bar */
    .filter-bar {
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    /* Child Cards */
    .child-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        height: 100%;
        display: none;
    }
    
    .child-card.visible {
        display: block;
    }
    
    .child-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .child-photo {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    
    .child-info {
        padding: 20px;
    }
    
    .child-name {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 5px;
    }
    
    .child-details {
        font-size: 13px;
        color: #666;
        margin-bottom: 10px;
    }
    
    .child-details i {
        width: 20px;
        color: #2c7a4d;
    }
    
    .child-story {
        font-size: 13px;
        color: #777;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .sponsor-btn {
        background: #2c7a4d;
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        width: 100%;
        text-align: center;
        transition: all 0.3s;
    }
    
    .sponsor-btn:hover {
        background: #1e5a38;
        transform: translateX(5px);
        color: white;
    }
    
    .load-more-container {
        text-align: center;
        margin-top: 40px;
    }
    
    .btn-load-more {
        background: #2c7a4d;
        color: white;
        padding: 14px 50px;
        border-radius: 40px;
        border: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn-load-more:hover {
        background: #1e5a38;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 15px;
    }
    
    /* Call to Action */
    .cta-section {
        width: 100%;
        margin: 0;
        padding: 60px 0;
        background: linear-gradient(135deg, #2c7a4d 0%, #1e5a38 100%);
        color: white;
        text-align: center;
    }
    
    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .cta-section h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn-sponsor-cta {
        background: white;
        color: #2c7a4d;
        padding: 12px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-learn-cta {
        background: transparent;
        color: white;
        padding: 12px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        border: 2px solid white;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .scroll-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }
    
    .scroll-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    @media (max-width: 768px) {
        .page-hero img { height: 280px; }
        .header-text-overlay h1 { font-size: 28px; }
        .does-title h2 { font-size: 24px; }
        .child-photo { height: 180px; }
        .child-name { font-size: 18px; }
        .cta-section h2 { font-size: 24px; }
        .decorative-lines, .decorative-lines-right { display: none; }
    }
