#ict-donation-form {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.ict-amounts {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.ict-amount {
    padding: 16px;
    border: 2px solid #ddd;
    cursor: pointer;
    border-radius: 10px;
    background: white;
}

.ict-amount.active {
    border-color: #0F766E;
}

#ict-custom-amount {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
}

.ict-frequency {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ict-frequency button {
    flex: 1;
    padding: 14px;
}

#ict-donate-btn {
    width: 100%;
    padding: 18px;
    background: #0F766E;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}