
        * {
            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;
            --tool-primary: #0f4c75;
            --tool-secondary: #3282b8;
            --tool-accent: #ff7b54;
        }

        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);
            }
        }

        /* Updated Scholarship Form Styles */
        .scholarship-form-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
        }

        .scholarship-form-card .card-header {
            background: linear-gradient(to right, var(--tool-primary), var(--tool-secondary));
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }

        .scholarship-form-card .card-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .scholarship-form-card .card-body {
            padding: 30px;
            position: relative;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--tool-primary);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }

        .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
            outline: none;
            background-color: white;
        }

        .btn-container {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--tool-secondary);
            color: white;
            box-shadow: 0 4px 8px rgba(50, 130, 184, 0.3);
        }

        .btn-primary:hover {
            background: var(--tool-primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(50, 130, 184, 0.4);
        }

        .btn-secondary {
            background: var(--gray);
            color: white;
        }

        .btn-secondary:hover {
            background: #5a6268;
            transform: translateY(-2px);
        }

        .btn-warning {
            background: var(--tool-accent);
            color: white;
            box-shadow: 0 4px 8px rgba(255, 123, 84, 0.3);
        }

        .btn-warning:hover {
            background: #ff6338;
            transform: translateY(-2px);
        }

        /* Loading Animation */
        .loading-container {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
        }

        .loading-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--tool-primary);
            margin-bottom: 25px;
        }

        .progress-bar {
            width: 100%;
            height: 10px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(to right, var(--tool-primary), var(--tool-secondary));
            width: 0%;
            border-radius: 10px;
            transition: width 1.5s ease-in-out;
        }

        .loading-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .loading-icon {
            font-size: 22px;
            color: var(--tool-secondary);
            animation: pulse 1.5s infinite;
        }

        .loading-icon:nth-child(2) { animation-delay: 0.3s; }
        .loading-icon:nth-child(3) { animation-delay: 0.6s; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
        }

        /* Result Styles */
        .result-content {
            display: none;
            text-align: center;
        }

        .result-title {
            font-size: 22px;
            color: var(--tool-primary);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .result-amount {
            font-size: 42px;
            font-weight: 800;
            color: var(--tool-secondary);
            margin: 15px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            background: linear-gradient(to right, var(--tool-primary), var(--tool-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .result-desc {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark);
        }

        .result-note {
            background: #e3f2fd;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid var(--tool-secondary);
            font-size: 15px;
        }

        .result-warning {
            background: #ffedeb;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid var(--tool-accent);
            font-size: 15px;
            display: none;
        }

        .validation-error {
            color: var(--danger);
            text-align: center;
            margin-top: 10px;
            font-weight: 500;
            display: none;
            animation: shake 0.5s ease;
        }
        
        .validation-error.show {
            display: block;
        }

        /* 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);
        }
        
        /* Full-width FAQ Section */
        .faq-full-width {
            background: white;
            border-radius: 3px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 3px;
            margin: 25px 0;
            overflow: hidden;
        }
        
        .faq-header {
            background: linear-gradient(to right, #1a4f72, #2980b9);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: bold;
            justify-content: center;
        }
        
        .faq-container {
            padding: 18px;
        }
        
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            padding: 12px 0;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 10px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--secondary);
        }
        
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            transition: transform 0.3s ease;
            font-size: 14px;
        }
        
        .faq-question.active::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--dark);
            line-height: 1.6;
            padding: 0 10px;
            font-size: 14px;
        }
        
        .faq-answer.open {
            max-height: 500px;
            padding: 10px;
        }
        
        /* 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 {
                gap: 12px;
            }
        
            .faq-container, .box-content {
                padding: 12px;
            }
            
            .full-width-box, .faq-full-width {
                margin: 15px 0;
            }
            
            .full-page-menu, .menu-overlay {
                top: 60px;
                height: calc(100vh - 60px);
            }
            
            .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;
            }
            
            /* Scholarship form mobile adjustments */
            .scholarship-form-card .card-body {
                padding: 15px;
            }
            
            .result-title {
                font-size: 20px;
            }
            
            .result-amount {
                font-size: 28px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 15px;
            }
        }
        
        /* New: Spacer before footer */
        .footer-spacer {
            height: 60px;
            display: block;
            width: 100%;
        }
        
        /* Footer bottom spacing */
        .minimal-footer {
            padding-bottom: 30px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes shake {
            0% { transform: translateX(0); }
            20% { transform: translateX(-10px); }
            40% { transform: translateX(10px); }
            60% { transform: translateX(-10px); }
            80% { transform: translateX(10px); }
            100% { transform: translateX(0); }
        }