/* Subscriptions Section */
.subscriptions {
    background: #f9fdfb;
    text-align: center;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.subscription-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sub-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #E6EFE9;
    width: 320px;
    position: relative;
    transition: transform 0.3s ease;
}

.sub-card:hover {
    transform: translateY(-10px);
    border-color: #1F7A4D;
}

.sub-card.featured {
    border-color: #1F7A4D;
    box-shadow: 0 10px 30px rgba(31, 122, 77, 0.1);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB347;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.sub-card h3 {
    font-size: 24px;
    color: #1F7A4D;
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1E1E1E;
}

.price span {
    font-size: 16px;
    color: #888;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 12px;
    color: #555;
    font-size: 14px;
}

.features i {
    color: #1F7A4D;
    margin-right: 10px;
}

.sub-card .btn {
    width: 100%;
    margin-right: 0;
}
