 /* Empowerment Cards CSS */
        .empowerment-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            position: relative;
            height: 100%;
        }

        .empowerment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #28a745, #e91e63);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .empowerment-card:hover::before {
            transform: scaleX(1);
        }

        .empowerment-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .vision-icon {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .mission-icon {
            background: linear-gradient(135deg, #e91e63, #f06292);
        }

        .objective-icon {
            background: linear-gradient(135deg, #28a745, #66bb6a);
        }

        .goal-icon {
            background: linear-gradient(135deg, #e91e63, #ec407a);
        }

        .card-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .empowerment-card:hover .card-icon::before {
            width: 100px;
            height: 100px;
        }

        .card-header-custom {
            background: none;
            border: none;
            padding: 30px 30px 20px;
            text-align: center;
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0;
            background: linear-gradient(45deg, #28a745, #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }

        .empowerment-card:hover .card-title {
            transform: scale(1.05);
        }

        .card-body {
            padding: 0 30px 30px;
        }

        .card-text {
            color: #6c757d;
            line-height: 1.7;
            font-size: 1.05rem;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .empowerment-card:hover .card-text {
            color: #495057;
            opacity: 1;
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in:nth-child(1) { animation-delay: 0.1s; }
        .fade-in:nth-child(2) { animation-delay: 0.2s; }
        .fade-in:nth-child(3) { animation-delay: 0.3s; }
        .fade-in:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(45deg, #28a745, #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
            
            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* About Page Specific Styles */
        .about-page-body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }