﻿.feature-card {
    display: flex;
    text-align: center;
    align-items: start;
    justify-content: center;
    padding: 0px 20px;
    background: #fff;
    border-radius: 10px;
    border: 3px solid #ff6a2a;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 220px;
    height: 300px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border: none;
}

.feature-items{
    width: 174px;
}

.feature-icon-div {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.feature-title {
    color: #ff6a2a;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-description {
    color: #333;
    font-size: 0.95rem;
}
