.home_container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    color: #333;
    line-height: 1.6;
}

.home_intro h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1b1b1b;
}

.home_intro p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}


.home_logos_section {
    margin-top: 50px;
}

.home_logos_section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.home_logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    align-items: center;
    justify-items: center;
    padding: 10px 0;
}

.home_logos img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
    transition: transform .2s ease;
    background: none;
}

.home_logos img:hover {
    transform: scale(1.08);
}
