/* Packages Section */
.packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 3px solid #e67e22;
    transform: scale(1.05);
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;

}

.package-header p {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 30px;
}

.package-features h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.package-features ul {
    list-style: none;
}

.package-features li {
    padding: 8px 0;
    color: var(--dark-blue);
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}
