* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #2746F8;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

.hero-section {
    flex: 1;
    background-color: #2746F8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
}

.hero-content {
    max-width: 500px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.form-section {
    flex: 1;
    background-color: #ffffff;
    padding: 20px 40px 40px;
    max-width: 550px;
    overflow-y: auto;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.logo svg {
    display: block;
}

.language-link {
    color: #2746F8;
    text-decoration: none;
    font-size: 14px;
}

.language-link:hover {
    text-decoration: underline;
}

.form-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
}

.nav-link {
    color: #2746F8;
    text-decoration: none;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-divider {
    color: #666;
}

.nav-divider a {
    color: #2746F8;
    text-decoration: none;
}

.more-options {
    margin-left: auto;
}

.donation-form-container {
    background: #ffffff;
}

.form-intro {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
}

.donation-type-toggle {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-btn.active {
    background: #f5f5f5;
    border-bottom: 3px solid #2746F8;
}

.toggle-btn:hover:not(.active) {
    background: #fafafa;
}

.heart-icon {
    font-size: 14px;
}

.section-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: #2746F8;
}

.amount-btn.active {
    background: #2746F8;
    color: #ffffff;
    border-color: #2746F8;
}

.custom-amount {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 15px;
    margin-bottom: 25px;
}

.currency-symbol {
    color: #666;
    font-size: 16px;
}

.custom-amount input {
    flex: 1;
    border: none;
    padding: 12px 10px;
    font-size: 16px;
    outline: none;
}

.custom-amount input::placeholder {
    color: #999;
}

.options-section {
    margin-bottom: 25px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #2746F8;
}

.checkbox-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.checkbox-text strong {
    font-weight: 600;
}

.dedication-form {
    display: none;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    margin-left: 30px;
}

.dedication-form.show {
    display: block;
}

.dedication-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dedication-form .form-group {
    margin-bottom: 15px;
}

.dedication-form .form-group label {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin-bottom: 6px;
}

.dedication-form .form-group select,
.dedication-form .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
}

.dedication-form .form-group select:focus,
.dedication-form .form-group input:focus {
    outline: none;
    border-color: #2746F8;
}

.dedication-names {
    display: flex;
    gap: 15px;
}

.dedication-names .form-group {
    flex: 1;
}

.customize-name-form {
    display: none;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    margin-left: 30px;
}

.customize-name-form.show {
    display: block;
}

.customize-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.customize-name-form .form-group {
    margin-bottom: 0;
}

.customize-name-form .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
}

.customize-name-form .form-group input:focus {
    outline: none;
    border-color: #2746F8;
}

.challenge-fund-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.challenge-option {
    margin-bottom: 8px;
}

.heart-red {
    color: #ED1C24;
}

.challenge-text {
    color: #666;
    font-size: 13px;
}

.learn-more {
    color: #2746F8;
    text-decoration: none;
    font-size: 14px;
    margin-left: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.learn-more:hover {
    text-decoration: underline;
}

.challenge-fund-details {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.challenge-fund-details.show {
    display: block;
}

.challenge-fund-details p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.payment-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-btn {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #2746F8;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2746F8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.payment-btn.active {
    background: #f0f4ff;
}

.payment-btn:hover {
    background: #f0f4ff;
}

.credit-card-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2746F8;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .expiration {
    flex: 2;
}

.form-row .cvv {
    flex: 1;
}

.expiration-fields {
    display: flex;
    gap: 10px;
}

.expiration-fields select {
    flex: 1;
}

.alternative-payments {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.alt-payment-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alt-payment-btn:hover {
    border-color: #2746F8;
}

.alt-payment-btn img {
    height: 30px;
    display: block;
    margin: 0 auto;
}

.donate-btn {
    width: 100%;
    padding: 16px 30px;
    background: #2746F8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.donate-btn:hover {
    background: #1a35c4;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.trust-badges img {
    height: 40px;
    opacity: 0.7;
}

.faq-section {
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.faq-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.faq-show-hide {
    background: none;
    border: none;
    color: #2746F8;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.faq-show-hide:hover {
    color: #1a35c4;
}

.faq-list {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span:first-child {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    font-size: 18px;
    font-weight: 700;
    color: #2746F8;
    width: 20px;
    text-align: center;
}

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    background: #f8f9fa;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.back-to-top {
    color: #2746F8;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin-top: 10px;
}

.back-to-top:hover {
    text-decoration: underline;
}

.form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #2746F8;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        margin: 0 auto 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .form-section {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 26px;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
    }

    .form-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .more-options {
        margin-left: 0;
        width: 100%;
    }
}
