.hero-section {
    padding: 6rem 0;
}

#features {
    padding: 6rem 0;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.bg-darker {
    background-color: #212529;
}

.price-card {
    background-color: #2c3034;
    border: 1px solid #495057;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: scale(1.02);
}

.price-card.popular {
    border-color: #0d6efd;
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #0d6efd;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
}

.price-card ul li {
    padding: 0.5rem 0;
}

.price-card .btn {
    margin-top: auto;
}
