﻿ 

 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
}

.reference-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #D8DAE2;
}

    .reference-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: #FF6600;
    }

.logo-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.reference-name {
    font-size: 0.95em;
    color: #666;
    text-align: center;
    font-weight: 500;
}

 

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .logo-header {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.5em;
    }
}

 
