﻿.feature-box {
    padding: 20px;
    transition: transform 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-10px);
    }

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background-color: #fff4e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f3a100;
    margin: 0 auto;
    border: 2px solid #f3a100;
    box-shadow: 0 0 0 5px rgba(243, 161, 0, 0.1), 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-bg {
    background-color: #f3a100;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 0 8px rgba(243, 161, 0, 0.2);
}

.feature-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1C3D5E;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}
