
    
    .certification-section {
        background-color: #f5f5f5;

        padding: 50px 0;

        
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
text-align: center;
    }

    
    .header-content {
        margin-bottom: 40px;
}

    .main-title {
        font-size: 28px;
        font-weight: bold;
        color: #2c3e50;
margin-bottom: 10px;
        
    }

    .subtitle {
        font-size: 16px;
color: #7f8c8d;
        
    }

    
    .logos-grid {
        max-width: 1200px;
margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 0px;

        padding: 0 5px;
}

    
    .certification-card {
        display: flex;
flex-direction: column; 
        align-items: center;

        text-align: center;
        padding: 5px 10px;

    }

    
    .logo-item {
        width: 100%;
height: 100px; 
        position: relative;
        margin-bottom: 0px;

        box-sizing: border-box;

        display: flex;
        justify-content: center;
        align-items: center;
}

    
    .logo-item img {
        max-width: 100%;

        max-height: 100%;

        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 0.8;
}

    
    .certification-name {
        font-size: 14px;
color: #555;
        font-weight: 600;
        padding: 5px 0 0 0;
        
    }

    
    @media (max-width: 992px) {
        .logos-grid {
            grid-template-columns: repeat(3, 1fr);
}
    }
    @media (max-width: 768px) {
        .logos-grid {
            grid-template-columns: repeat(2, 1fr);
}
        .logo-item {
            height: 80px;
}
        .main-title {
            font-size: 24px;
}
    }
