html {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


/* Why Choose section */
.why-choose {
    text-align: center;
    margin: 80px auto 50px auto;
    max-width: 72rem;
    padding: 60px 20px;
}

/* Заголовок */
.why-choose h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c; /* тёмный */
    margin-bottom: 15px;
}

.why-choose h2 .brand-name {
    color: #f9d776; /* твой жёлтый акцент */
}

/* Подзаголовок */
.why-choose p.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a5568; /* серый */
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.why-card {
    background: hsl(120 20% 98%);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.25s ease-in-out;
}

.why-card-title{
    font-size: 1.25rem;
    font-weight: 700;
}

.why-card-desc{
    color: #628462;
    font-size: 0.85em;
    padding-top: 10px;
    line-height: 1.6em;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    border-color: #f9d776;
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;       /* скруглённые углы */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #f5f7f5;       /* нежно-серый/зелёный фон */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    transition: background 0.25s ease;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    stroke: #2f855a;
    fill: none;
    transition: stroke .25s ease, fill .25s ease;
}

.why-card:hover .why-icon svg {
    stroke: #f9d776;
}
