.watoto-sponsor-form {
    max-width: 480px;
    background: #f8f6f0;
    padding: 30px 40px;
    font-family: "Jost", Sans-serif;
    color: #333;
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 20px;
}

.watoto-sponsor-form h2, .watoto-sponsor-form h3 {
    font-weight: 500;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.watoto-sponsor-form h2 {
    font-size: 20px;
    color: #074058;
    font-weight: 600;
}
label.plan-option {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 15px;
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    background: white;
}
.watoto-sponsor-form input[type="radio"]:checked + label.plan-option {
    border-color: #007A29;
    font-weight: 600;
    background: #d4ecd7;
}
.watoto-sponsor-form input[type="radio"] {
    display: none;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-row.half > input {
    flex: 1;
}

.watoto-sponsor-form input[type="text"],
.watoto-sponsor-form input[type="email"],
.watoto-sponsor-form input[type="tel"],
.watoto-sponsor-form select,
.watoto-sponsor-form textarea {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.watoto-sponsor-form textarea {
    resize: vertical;
    min-height: 60px;
}

label.checkbox-label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    cursor: pointer;
    flex-wrap: wrap;
    line-height: 13px;
    margin-bottom: 15px;
}
.watoto-sponsor-form input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #007A29;
}

.card-element {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-top: 12px;
}

.submit-btn {
    background-color: #007A29;
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
}
.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.terms-link {
    font-size: 11px;
    color: #007A29;
    text-decoration: underline;
    margin-left: 4px;
}

.form-response {
    margin-top: 20px;
    font-weight: 600;
}

.watoto-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    z-index: 99999;
}

.watoto-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.watoto-modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.watoto-close {
    position: absolute;
    right: 15px;
    top: 10px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    padding: 7px;
    width: 40px;
}

.watoto-header {
    display: flex;
    gap: 15px;
    padding: 25px;
    align-items: center;
}

.watoto-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.watoto-header h2 {
    margin: 0;
    font-size: 24px;
}

.meta {
    font-size: 14px;
    color: #333;
}

.meta span {
    color:#FF601A;
    font-weight: 600;
}

.progress-bar {
    display: flex;
    height: 6px;
}

.progress-bar span {
    flex: 1;
}

.progress-bar .green { background: #25cabb; }
.progress-bar .darkgreen { background: #fac815; }
.progress-bar .blue { background: #FF601A; }
.progress-bar .navy { background: #074058; }

.watoto-body {
    padding: 25px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.6;
}

.watoto-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.sponsor-btn {
    background:#ff5f19;
    color: #fff;
    border: none;
    padding: 6px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}