.plans-section {
    padding: 60px 20px;
    background: #f0f4f8;
    text-align: center;
    background-image: url("/assets/images/bg2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.plan-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.plan-section-title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #004aad;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.plans-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    min-height: 420px;
    box-sizing: border-box;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.plan-divider {
    border: none;
    border-top: 1px solid #a5a5a5;
    margin: 10px 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.plan-features .check {
    display: inline-block;
    width: 20px;
    color: #4CAF50;
    margin-right: 10px;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

.plan-recommend {
    background-color: #eef6f5;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    color: #333;
}

.plan-card:nth-child(1) {
    background: linear-gradient(135deg, #fff4d6 0%, #ffd700 100%);
}

.plan-card:nth-child(2) {
    background: linear-gradient(135deg, #4a4a4a 0%, #000000 100%);
    color: #fff;
}

.plan-card:nth-child(2) .plan-features .available .check {
    color: #7CFC00;
}

.plans-info {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.plans-info p {
    margin: 6px 0;
}

.info-button {
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background-color: #007aff;
    color: #fff;
    transition: 0.2s;
}

.info-button:hover {
    background-color: #005fcc;
}