
        * {
            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; /* Increased top padding */
            text-align: center;
            margin-top: 40px; /* Added more top margin */
            border-top: 1px solid rgba(255, 255, 255, 0.1); /* Added subtle border */
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0 10px;
            gap: 15px; /* Increased gap between links */
            margin-bottom: 15px; /* Added more bottom margin */
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 5px 15px; /* Added vertical padding */
            white-space: nowrap;
            transition: color 0.3s;
            border-radius: 4px;
        }
        
        /* Removed hover background effect */
        .footer-links a:hover {
            color: #f7a541;
        }
        
        .copyright {
            color: #e0e0e0; /* Lightened text color */
            font-size: 14px;
            margin-top: 15px; /* Increased top margin */
            line-height: 1.6;
        }
        
        .copyright a {
            color: #4da6ff;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500; /* Made links bolder */
        }
        
        .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);
            }
        }

        /* Tool Cards Section - Simplified */
        .appbox-option {
            background-clip: padding-box;
            border-radius: 3px;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 3px;
            box-sizing: border-box;
            display: flex;
            font-size: 0px;
            height: 65px;
            margin: 0px 0px 10px;
            padding: 0px;
            vertical-align: top;
            width: 100%;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .appbox-option:hover {
           
            box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
        }

        .appbox-left {
            background-clip: padding-box;
            border-radius: 3px 0px 0px 3px;
            box-sizing: border-box;
            color: white;
            display: inline-flex;
            height: 65px;
            margin: 0px;
            padding: 0px;
            position: relative;
            text-align: center;
            vertical-align: top;
            width: 65px;
            align-items: center;
            justify-content: center;
        }

        .appbox-left i {
            font-size: 28px;
            color: white;
        }

        .appbox-right {
            background-clip: padding-box;
            border-radius: 0px 3px 3px 0px;
            box-sizing: border-box;
            color: #555555;
            display: inline-block;
            height: 65px;
            margin: 0px;
            padding: 5px 10px;
            position: relative;
            vertical-align: top;
            width: calc(100% - 65px);
        }

        /* Increased tool title size */
        .appbox-right span {
            box-sizing: border-box;
            color: rgb(255, 255, 255) !important;
            display: block;
            font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
            font-size: 18px; /* Increased from 17px */
            font-weight: 700;
            line-height: 26px;
            margin: 2px;
            padding: 0px;
            position: relative;
        }

        .appbox-right-min {
            box-sizing: border-box;
            color: rgb(255, 255, 255) !important;
            font-size: 11px;
            margin: 4px 0px 2px;
            padding: 0px;
            position: relative;
        }

        /* Color Classes for Tool Cards */
        .top1 {
            background-image: linear-gradient(to left, #33ccff 0%, #0066cc 100%);
        }

        .top2 {
            background-image: linear-gradient(to right, rgb(154, 32, 25), rgb(239, 134, 41));
        }

        .top3 {
            background-image: linear-gradient(to right, #006600 0%, #00cc66 100%);
        }

        .top4 {
            background-image: linear-gradient(to right, rgb(178, 139, 42), rgb(201, 162, 65));
        }

        .top5 {
            background-image: linear-gradient(to right, #004566, #19b986);
        }

        .top6 {
            background-image: linear-gradient(to right, #6a3093, #a044ff);
        }

        .top7 {
            background-image: linear-gradient(to right, #c0392b, #e74c3c);
        }

        /* About Section */
        .about-box {
            background: white;
            border: 1px solid #5c86a1;
            padding: 5px 20px;
            border-radius: 4px;
            box-shadow: 0px 0px 5px #000000;
            text-align: justify;
            background-color: #e3f8ff;
            color: #000000;
            margin: 25px 0;
        }

        .about-box legend {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 10px;
            border: 1px solid #a09467;
            border-radius: 0px 0px 10px 10px;
            background: linear-gradient(to right, #000099 0%, #66ccff 100%);
            color: #fff;
            font-size: 19px;
            font-weight: bold;
            width: auto;
        }

        /* Reduced text size and line spacing */
        .about-box h1 {
            color: var(--dark);
            font-size: 14px; /* Reduced from 15px */
            line-height: 1.5; /* Reduced from 1.6 */
            margin-bottom: 8px; /* Reduced from 10px */
            font-weight: normal;
        }

        .about-box h2 {
            color: var(--dark);
            font-size: 14px; /* Reduced from 15px */
            line-height: 1.5; /* Reduced from 1.6 */
            margin-bottom: 8px; /* Reduced from 10px */
            font-weight: normal;
        }

        .about-box h1 strong,
        .about-box h2 strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* 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%);
            /* Animated gradient background */
            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;
            }
            
            .appbox-option {
                margin: 0 0 8px;
            }
            
            .main-content {
                gap: 12px;
            }
        
            .about-box, .faq-container, .box-content {
                padding: 12px;
            }
            
            .about-box {
                margin: 15px 0;
            }
            
            .full-width-box, .faq-full-width {
                margin: 15px 0;
            }
            
            .appbox-right span {
                font-size: 16px; /* Adjusted for mobile */
            }
            
            .appbox-right-min {
                font-size: 10px;
            }
            
            .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;
            }
        }
        
        /* New: Spacer before footer */
        .footer-spacer {
            height: 60px; /* Increased from 40px */
            display: block;
            width: 100%;
        }
        
        /* Footer bottom spacing */
        .minimal-footer {
            padding-bottom: 30px; /* Increased bottom padding */
        }