
    
    :root {
        --section-bg: #ffffff;
        
        --text-color-primary: #2c3e50;
        
        --text-color-secondary: #7f8c8d;
        
        --icon-size: 60px;
        
    }

    
    .partner-section {
        background-color: var(--section-bg);
        padding: 30px 20px;
        
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        text-align: center;
        
    }

    
    .section-title {
        margin-bottom: 50px;
    }

    
    .features-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    
    .feature-item {
        flex: 1;
        text-align: left; 
    }

    
    .feature-icon-img {
        max-width: 100%;
        
        height: auto;
        margin-bottom: 20px;
        display: block;
        margin-left: 0;
        
        margin-right: auto;
    }

    
    .feature-title {
        font-size: 16px;
        
        font-weight: bold;
        color: #0f403f;
        
        margin-bottom: 10px;
        line-height: 1.4;
        text-align: left;
        
    }

    
    .feature-description {
        font-size: 14px;
        color: var(--text-color-secondary);
        line-height: 1.6;
        text-align: left; 
    }

    
    @media (max-width: 768px) { 
        .features-grid {
            flex-direction: column;
            
            gap: 40px;
            
            padding: 0 10px;
            
        }
        .feature-item {
            
            flex: 0 0 100%;
            width: 100%;
            margin-bottom: 0; 
            text-align: left;
        }
        .feature-icon-img {
            margin-left: 0;
            
        }
    }
    
    
    @media (min-width: 769px) and (max-width: 1024px) {
         .features-grid {
            flex-wrap: wrap;
            justify-content: space-around;
        }
        .feature-item {
            flex: 0 0 calc(50% - 15px);
            
            margin-bottom: 30px;
            text-align: left;
        }
    }

