/* ========== WHY CHOOSE US PAGE SPECIFIC STYLES ========== */

/* Impact Stats */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.impact-card {
    background: white;
    padding: 35px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.impact-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ff6b6b;
}

.impact-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3436;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.advantage-list {
    margin-top: 15px;
    list-style: none;
}

.advantage-list li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.advantage-list li:before {
    content: "✓";
    color: #ff6b6b;
    font-weight: bold;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.process-number {
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.process-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d3436;
}

.process-card p {
    color: #666;
    font-size: 0.85rem;
}

/* Why Choose Us Responsive */
@media (max-width: 992px) {
    .impact-grid, .advantages-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid, .advantages-grid, .process-grid {
        grid-template-columns: 1fr;
    }
}