/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.features-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.features-header .view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-header .view-all:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.feature-icon-orange {
    background-color: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.feature-icon-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.feature-icon-green {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.feature-card p {
    color: rgb(57, 56, 56);
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.feature-tag {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(57, 56, 56);
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}
