* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #ffffff;
    background-image: url('/images/tild3338-6561-4635-a639-666430306561__background.png');
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 0;
    color: #000000;
}

/* Header Styles */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    position: relative;
}

.header-logo {
    position: absolute;
    left: 20px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
}

.logo-text {
    font-weight: 600;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: #606060;
}

.has-submenu > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0px 15px 30px -10px rgba(0,11,48,0.2);
    list-style: none;
    min-width: 150px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #000000;
    font-size: 16px;
}

.submenu a:hover {
    background-color: rgba(0,0,0,0.05);
    color: #606060;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    background-image: url('/images/tild6534-6361-4536-a435-356430313330__background.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 60px 20px 40px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h3 {
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 200px;
    height: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-link-group a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.footer-link-group a:hover {
    opacity: 0.8;
    border-color: rgba(255,255,255,0.3);
}

.footer-copyright {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header */
@media (max-width: 960px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo {
        position: static;
    }
    
    .header-container {
        justify-content: space-between;
    }

    .header-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.10);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header-nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-list a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0,0,0,0.1);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-submenu.active .submenu {
        max-height: 200px;
    }

    .has-submenu > a::after {
        float: right;
    }
}

@media (max-width: 768px) {
    .footer-section h3 {
        font-size: 25px;
    }

    .footer-section p {
        font-size: 18px;
    }

    .footer-social {
        gap: 20px;
    }

    .social-link img {
        width: 150px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section p {
        font-size: 16px;
    }

    .social-link img {
        width: 120px;
    }
}

.donation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.donation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

.donation-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.donation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.donation-left-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #bbb2e9;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(187, 178, 233, 0.1);
}

.form-select option {
    background: #ffffff;
    color: #000000;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.payment-method-btn {
    padding: 16px;
    background: #f8f8f8;
    border: 2px solid #e2e2e2;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-btn:hover {
    background: #f0f0f0;
    border-color: #bbb2e9;
    transform: translateY(-2px);
}

.payment-method-btn.active {
    background: #bbb2e9;
    border-color: #bbb2e9;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(187, 178, 233, 0.3);
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.payment-logo {
    font-size: 14px;
    font-weight: 600;
}

.payment-badges {
    display: flex;
    gap: 4px;
    font-size: 10px;
}

.badge {
    background: #bbb2e9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.amount-input {
    flex: 1;
}

.bonus-indicator {
    font-size: 14px;
    color: #bbb2e9;
    font-weight: 600;
    white-space: nowrap;
}

.bonus-slider-container {
    position: relative;
    padding: 20px 0 50px 0;
}

.bonus-slider {
    width: 100%;
    height: 8px;
    background: #e2e2e2;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.bonus-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #bbb2e9;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(187, 178, 233, 0.5);
}

.bonus-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #bbb2e9;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(187, 178, 233, 0.5);
}

.bonus-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    position: relative;
}

.bonus-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666666;
}

.mark-amount {
    font-weight: 600;
}

.mark-bonus {
    color: #bbb2e9;
    font-weight: 600;
}

.payment-amounts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
}

.payment-amount-item {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #bbb2e9;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #a59dd9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(187, 178, 233, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.donation-right-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.bonus-table {
    width: 100%;
}

.bonus-table-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

.bonus-table-content {
    width: 100%;
    border-collapse: collapse;
}

.bonus-table-content thead {
    background: #f8f8f8;
}

.bonus-table-content th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    border-bottom: 2px solid #e2e2e2;
}

.bonus-table-content td {
    padding: 12px;
    font-size: 14px;
    color: #000000;
    border-bottom: 1px solid #e2e2e2;
}

.bonus-table-content tbody tr:hover {
    background: #f8f8f8;
}

.bonus-table-content tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .donation-content {
        grid-template-columns: 1fr;
    }

    .donation-right-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .donation-header h1 {
        font-size: 24px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-left-panel,
    .donation-right-panel {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .bonus-marks {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bonus-mark {
        flex: 1;
        min-width: 60px;
    }
}

