
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a4f72;
            --primary-dark: #080561;
            --secondary: #2980b9;
            --accent: #e67e22;
            --light: #f8f9fa;
            --dark: #343a40;
            --darker: #1d2124;
            --success: #27ae60;
            --danger: #e74c3c;
            --warning: #f39c12;
            --gray: #6c757d;
        }

        body {
            background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
            min-height: 100vh;
            color: var(--dark);
            display: flex;
            flex-direction: column;
            padding-bottom: 0;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: var(--primary-dark);
            color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
            padding: 0 15px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: bold;
            font-family: 'Segoe UI', sans-serif;
        }

        .logo-text span:first-child {
            color: #ffffff;
        }

        .logo-text span:last-child {
            color: #f7a541;
        }

        .menu-toggle {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 1002;
        }

        /* Enhanced Footer Styles */
        .minimal-footer {
            background: #000;
            padding: 30px 0 20px;
            text-align: center;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0 10px;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 5px 15px;
            white-space: nowrap;
            transition: color 0.3s;
            border-radius: 4px;
        }
        
        .footer-links a:hover {
            color: #f7a541;
        }
        
        .copyright {
            color: #e0e0e0;
            font-size: 14px;
            margin-top: 15px;
            line-height: 1.6;
        }
        
        .copyright a {
            color: #4da6ff;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .copyright a:hover {
            color: #f7a541;
            text-decoration: underline;
        }

        /* Full-Page Menu Bar */
        .full-page-menu {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: calc(100vh - 70px);
            background: white;
            z-index: 999;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .full-page-menu.active {
            right: 0;
        }

        .menu-items {
            list-style: none;
            padding: 20px 0;
        }

        .menu-items li {
            border-bottom: 1px solid rgba(8, 5, 97, 0.1);
        }

        .menu-items li:last-child {
            border-bottom: none;
        }

        .menu-items a {
            display: flex;
            align-items: center;
            padding: 16px 25px;
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .menu-items a:hover {
            background: rgba(8, 5, 97, 0.05);
            padding-left: 30px;
        }

        .menu-items a i {
            margin-right: 15px;
            width: 25px;
            text-align: center;
            font-size: 20px;
            color: var(--primary-dark);
        }

        .menu-overlay {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            display: none;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Main Content Styles */
        main {
            padding: 30px 0;
            flex: 1;
        }

        .main-content {
            display: flex;
            gap: 20px;
        }

        .left-section {
            flex: 2;
        }

        .right-section {
            flex: 1;
        }

        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .full-page-menu {
                max-width: 280px;
                top: 60px;
                height: calc(100vh - 60px);
            }
            
            .menu-overlay {
                top: 60px;
                height: calc(100vh - 60px);
            }
        }

        /* About Us Page Styles */
        .about-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
            padding: 40px;
        }

        .about-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .about-header h1 {
            color: var(--primary);
            font-size: 36px;
            margin-bottom: 15px;
        }

        .about-header p {
            color: var(--gray);
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .about-section {
            margin-bottom: 40px;
        }

        .about-section h2 {
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .about-section h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--secondary);
        }

        .about-section p {
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 17px;
        }

        .mission-statement {
            background: linear-gradient(135deg, #f8f9fa, #e8f4fe);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .mission-statement p {
            font-style: italic;
            font-size: 20px;
            color: var(--primary);
            line-height: 1.6;
            text-align: center;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            color: var(--dark);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .team-member {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 220px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 80px;
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .member-role {
            color: var(--secondary);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .member-bio {
            color: var(--dark);
            font-size: 15px;
            line-height: 1.6;
        }

        .values-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .value-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent);
        }

        .value-title {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .value-icon {
            background: var(--accent);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }

        .value-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
        }

        .value-description {
            color: var(--dark);
            line-height: 1.7;
        }

        .contact-info {
            background: linear-gradient(135deg, #f8f9fa, #e8f4fe);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            color: var(--secondary);
            font-size: 24px;
            min-width: 40px;
            margin-top: 5px;
        }

        .contact-details {
            margin-left: 15px;
        }

        .contact-label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .contact-value {
            color: var(--dark);
            line-height: 1.6;
        }

        /* Full-width Box Styles */
        .full-width-box {
            background: white;
            border-radius: 3px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 3px;
            margin-bottom: 25px;
            overflow: hidden;
            width: 100%;
            transition: transform 0.3s;
        }
        
        .box-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: bold;
            justify-content: center;
            text-align: center;
        }
        
        .box-content {
            padding: 18px;
            text-align: center;
        }
        
        .box-content p {
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 15px;
            text-align: center;
        }

        .box-button {
            text-align: center;
            margin-top: 10px;
        }

        .box-button a {
            display: inline-block;
            padding: 12px 30px;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .support-button a {
            background: linear-gradient(to right, #cc0000 0%, #ff6600 100%);
            background-size: 200% auto;
            animation: gradientAnimation 3s ease infinite;
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .review-button a {
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .box-button a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Donor List Styles */
        .donor-list {
            width: 100%;
            border-collapse: collapse;
            margin-top: 12px;
            font-size: 13px;
        }
        
        .donor-list th {
            background-color: #f8f9fa;
            padding: 8px 10px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            border-bottom: 2px solid #e0e0e0;
        }
        
        .donor-list td {
            padding: 6px 10px;
            border-bottom: 1px solid #e0e0e0;
            text-align: center;
        }
        
        .donor-list tr:last-child td {
            border-bottom: none;
        }
        
        .donor-list tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .donor-list tr:hover {
            background-color: #edf7ff;
        }
        
        .donor-amount {
            font-weight: 600;
            color: var(--success);
        }
        
        .thank-you {
            text-align: center;
            margin-top: 12px;
            font-style: italic;
            color: var(--primary);
            font-weight: 500;
            font-size: 14px;
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }
            
            header {
                height: 60px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .menu-toggle {
                font-size: 22px;
            }
            
            .main-content {
                flex-direction: column;
                gap: 12px;
            }
        
            .about-container {
                padding: 20px 15px;
            }
            
            .about-header h1 {
                font-size: 28px;
            }
            
            .about-header p {
                font-size: 16px;
            }
            
            .about-section h2 {
                font-size: 24px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .team-container {
                grid-template-columns: 1fr;
            }
            
            .values-list {
                grid-template-columns: 1fr;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 16px;
            }
            
            .footer-links {
                flex-wrap: wrap;
                gap: 8px;
            }
            
            .footer-links a {
                font-size: 15px;
                padding: 5px 10px;
            }
            
            .copyright {
                font-size: 13px;
                margin-top: 10px;
            }
            
            .minimal-footer {
                padding: 25px 0 15px;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .about-container {
                padding: 15px 10px;
            }
            
            .about-header h1 {
                font-size: 24px;
            }
            
            .about-header p {
                font-size: 15px;
            }
            
            .about-section h2 {
                font-size: 22px;
            }
            
            .stat-card {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .mission-statement p {
                font-size: 18px;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 16px;
            }
        }
        
        /* Spacer before footer */
        .footer-spacer {
            height: 60px;
            display: block;
            width: 100%;
        }
