/* Max Amount Section */
.max-amount-section {
    background-color: #f5f5f7;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.max-amount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.max-amount-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.84px;
    color: #2E2E2E;
}

.max-amount-title .highlight {
    color: #006DFE;
    font-weight: 700;
}

.max-amount-cards {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}

.amount-card {
    width: 270px;
    background: linear-gradient(180deg, #EDFFFE 31.61%, #FFFFFF 50%);
    border-radius: 20px;
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
}

.amount-card-icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.amount-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amount-card-text {
    max-width: 163px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.amount-card-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.22px;
}

.amount-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #101010;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.28px;
    height: 72px;
}

/* Responsive design */
@media (max-width: 768px) {
    .max-amount-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .amount-card {
        width: 100%;
        max-width: 270px;
    }
}
