
    .support-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
        min-height: 100vh;
        overflow: hidden;
        position: relative;
    }

    /* Hero Section Font Styles */
    .main-heading {
        font-family: inherit;
        font-weight: 700;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .subheading {
        font-family: inherit;
        font-weight: 300;
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Background Shapes */
    .shape {
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(40px);
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        background: var(--bs-primary);
        top: 10%;
        left: 10%;
        animation: float 6s ease-in-out infinite;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
        background: var(--bs-warning);
        top: 60%;
        right: 10%;
        animation: float 8s ease-in-out infinite reverse;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
        background: var(--bs-info);
        bottom: 20%;
        left: 20%;
        animation: float 10s ease-in-out infinite;
    }

    /* Dual Light Effect */
    .dual-light {
        opacity: 0.3;
    }

    .light-scripture, .light-ordinary {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        filter: blur(60px);
    }

    .light-scripture {
        background: var(--bs-warning);
        top: 30%;
        left: 20%;
    }

    .light-ordinary {
        background: var(--bs-info);
        bottom: 30%;
        right: 20%;
    }

    /* Content Animations */
    .content-wrapper {
        animation: fadeInUp 1s ease-out;
    }

    /* Card Styles */
    .card {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    .shadow-glow {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    /* Panel Header */
    .panel-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--bs-warning), #e0a800);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: #000;
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* Currency Toggle */
    .currency-toggle .btn-group {
        border-radius: 10px;
        overflow: hidden;
    }

    .currency-toggle .btn {
        border: 2px solid var(--bs-warning);
        color: var(--bs-warning);
        transition: all 0.3s ease;
    }

    .currency-toggle .btn-check:checked + .btn {
        background: var(--bs-warning);
        border-color: var(--bs-warning);
        color: var(--bs-dark);
    }

    .currency-toggle .btn:hover {
        background: rgba(255, 193, 7, 0.1);
    }

    /* Amount Selection */
    .amount-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .amount-option {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 80px;
    }

    .amount-option:hover,
    .amount-option.active {
        background: rgba(255, 193, 7, 0.2);
        border-color: var(--bs-warning);
        transform: translateY(-2px);
    }

    .amount-value {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bs-warning);
    }

    .amount-equivalent {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    /* Crypto Options */
    .crypto-options {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .crypto-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .crypto-option:hover,
    .crypto-option.active {
        background: rgba(255, 193, 7, 0.2);
        border-color: var(--bs-warning);
        transform: translateY(-2px);
    }

    .crypto-value {
        color: var(--bs-warning);
        font-weight: 600;
    }

    .crypto-equivalent {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
    }

    /* Form Styles */
    .form-control {
        background: rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: white !important;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .form-control:focus {
        background: rgba(0, 0, 0, 0.4) !important;
        border-color: var(--bs-warning) !important;
        box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25) !important;
        color: white !important;
    }

    .input-group-text {
        background: rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-family: inherit;
    }

    /* Impact Preview */
    .impact-preview {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1.5rem;
    }

    .impact-items {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .impact-item {
        display: flex;
        align-items: center;
    }

    /* Payment Tabs */
    .payment-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .payment-tab {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem 0.5rem;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
        font-size: 0.9rem;
        font-family: inherit;
    }

    .payment-tab:hover,
    .payment-tab.active {
        background: rgba(255, 193, 7, 0.2);
        border-color: var(--bs-warning);
        color: var(--bs-warning);
    }

    /* Payment Details */
    .payment-method-details {
        display: none;
        animation: fadeIn 0.3s ease;
    }

    .payment-method-details.active {
        display: block;
    }

    .method-description {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1.5rem;
    }

    .payment-address {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .address-text {
        color: var(--bs-warning);
        font-family: monospace;
        word-break: break-all;
    }

    .payment-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
    }

    .info-label {
        color: white;
        font-weight: 500;
    }

    .info-value {
        color: var(--bs-warning);
        font-family: monospace;
    }

    /* QR Code Styling */
    .qr-code {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Gateway Buttons - Brand Colors */
    .btn-paypal {
        background: linear-gradient(135deg, #0070ba, #003087);
        border: 1px solid #0070ba;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-paypal:hover {
        background: linear-gradient(135deg, #005ea6, #002561);
        border-color: #005ea6;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
        color: white;
    }

    .btn-mpesa {
        background: linear-gradient(135deg, #00a650, #007a3d);
        border: 1px solid #00a650;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-mpesa:hover {
        background: linear-gradient(135deg, #008a43, #00612f);
        border-color: #008a43;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 166, 80, 0.4);
        color: white;
    }

    .btn-bitcoin {
        background: linear-gradient(135deg, #f2a900, #d49500);
        border: 1px solid #f2a900;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-bitcoin:hover {
        background: linear-gradient(135deg, #d49500, #b67e00);
        border-color: #d49500;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(242, 169, 0, 0.4);
        color: white;
    }

    .btn-ethereum {
        background: linear-gradient(135deg, #627eea, #3c55b7);
        border: 1px solid #627eea;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-ethereum:hover {
        background: linear-gradient(135deg, #3c55b7, #2a3b82);
        border-color: #3c55b7;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(98, 126, 234, 0.4);
        color: white;
    }

    /* Airtel Money Button */
    .btn-airtelmoney {
        background: linear-gradient(135deg, #e60a2b, #c40824);
        border: 1px solid #e60a2b;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-airtelmoney:hover {
        background: linear-gradient(135deg, #c40824, #a3061d);
        border-color: #c40824;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(230, 10, 43, 0.4);
        color: white;
    }

    /* Cash App Button */
    .btn-cashapp {
        background: linear-gradient(135deg, #00D632, #00B32A);
        border: 1px solid #00D632;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-cashapp:hover {
        background: linear-gradient(135deg, #00B32A, #009022);
        border-color: #00B32A;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 214, 50, 0.4);
        color: white;
    }

    /* Visa/Mastercard Button */
    .btn-visa {
        background: linear-gradient(135deg, #1A1F71, #FF5F00);
        border: 1px solid #1A1F71;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-visa:hover {
        background: linear-gradient(135deg, #151A5C, #E55600);
        border-color: #151A5C;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(26, 31, 113, 0.4);
        color: white;
    }

    /* Bank Transfer Button */
    .btn-bank {
        background: linear-gradient(135deg, #6C757D, #495057);
        border: 1px solid #6C757D;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-bank:hover {
        background: linear-gradient(135deg, #495057, #343A40);
        border-color: #495057;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
        color: white;
    }

    /* Apple Pay Button */
    .btn-applepay {
        background: linear-gradient(135deg, #000000, #434343);
        border: 1px solid #000000;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-applepay:hover {
        background: linear-gradient(135deg, #434343, #000000);
        border-color: #434343;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        color: white;
    }

    /* Google Pay Button */
    .btn-googlepay {
        background: linear-gradient(135deg, #4285F4, #34A853);
        border: 1px solid #4285F4;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-googlepay:hover {
        background: linear-gradient(135deg, #3367D6, #2E8B46);
        border-color: #3367D6;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
        color: white;
    }

    /* Validation Styles */
    .validation-message .alert {
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.3);
        color: #ffc107;
        border-radius: 8px;
        padding: 0.75rem;
    }

    .btn-proceed {
        background: linear-gradient(135deg, #28a745, #20c997) !important;
        border: 1px solid #28a745 !important;
        color: white !important;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-proceed:hover {
        background: linear-gradient(135deg, #218838, #1e9e8a) !important;
        border-color: #218838 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    }

    .btn-proceed:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none !important;
    }

    /* Security Assurance */
    .security-features {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .security-item {
        display: flex;
        align-items: center;
    }

    /* Copy Button */
    .copy-btn {
        transition: all 0.3s ease;
    }

    .copy-btn:hover {
        background: var(--bs-light) !important;
        color: var(--bs-dark) !important;
    }

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-heading {
            font-size: 2.5rem;
        }
        
        .amount-grid {
            grid-template-columns: 1fr;
        }
        
        .payment-tabs {
            grid-template-columns: 1fr;
        }
        
        .security-features {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .currency-toggle .btn-group {
            flex-direction: column;
        }
        
        .crypto-option {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
    }

    @media (max-width: 576px) {
        .main-heading {
            font-size: 2rem;
        }
        
        .panel-icon {
            width: 70px;
            height: 70px;
            font-size: 1.75rem;
        }
        
        .card-body {
            padding: 1.5rem !important;
        }
        
        .payment-tab {
            padding: 0.75rem 0.25rem;
            font-size: 0.8rem;
        }
    }
