/* Features Hero */
.features-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a6e 100%);
    padding: 100px 0;
    text-align: center;
}
.features-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.features-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Navigation */
.features-nav {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Feature Sections */
.feature-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Feature Comparison Table */
.feature-comparison {
    padding: 80px 0;
}

.feature-comparison table {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-comparison th {
    font-weight: 600;
    background-color: var(--primary-color);
    color: white;
}

.feature-comparison td {
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-comparison {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 80px 0;
    }
    
    .features-hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-section .text-center {
        margin-bottom: 40px;
    }
    
    .feature-comparison {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .features-hero {
        padding: 60px 0;
    }
    
    .features-hero h1 {
        font-size: 2rem;
    }
    
    .features-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .features-hero .d-flex {
        flex-direction: column;
    }
    
    .feature-section {
        padding: 40px 0;
    }
}