
body {
    font-family: 'Inter', sans-serif; 
    color: #333;
   
    background-color: #f4f7f6; 
}


.main-content-section {
    margin-top: 120px; 
    padding-bottom: 60px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.product-list-container { 
    width: 100%; 
    max-width: 1300px; 
    padding: 30px;
    
    background-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(8px); 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    
    border: 1px solid rgba(224, 224, 224, 0.5);
    box-sizing: border-box; 
    display: flex;
    flex-direction: column;
    align-items: center;
}


.list-header { 
    width: 100%;
    
    background-color: transparent; 
    padding: 18px 30px; 
    
    border-bottom: 1px solid rgba(224, 230, 236, 0.7);
    text-align: center;
    border-radius: 12px 12px 0 0; 
    box-shadow: none; 
   
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 25px; 
}

.list-header h2 { 
    font-size: 1.6em;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}


.product-list { 
    width: 100%;
    display: flex;
    flex-direction: column; 
    gap: 20px; 
}


.product-item { 
    display: flex; 
    align-items: center; 
    padding: 15px 20px; 
    
    border-bottom: 1px solid rgba(240, 240, 240, 0.7);
    
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer; 
    border-radius: 8px; 
}

.product-item:last-child {
    border-bottom: none; 
}

.product-item:hover {
    background-color: rgba(252, 252, 252, 0.7); 
    transform: translateY(-3px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); 
}


.product-logo { 
    flex-shrink: 0; 
    width: 250px; 
    height: 180px; 
    display: flex;
    justify-content: center;
    align-items: center;
   
    border: none;
    border-radius: 8px;
    margin-right: 45px; 
    overflow: hidden; 
 
    background-color: transparent; 
    box-shadow: none; 
}

.product-logo img {
    max-width: 100%; 
    max-height: 100%;
    object-fit: contain;
}


.product-info { 
    flex-grow: 1; 
    
    text-align: left; 
}

.product-info h3 { 
    font-size: 1.5em; 
    font-weight: 600;
    color: #3f556a; 
    margin-bottom: 8px; 
    line-height: 1.3;
}


.product-info p { 
    font-size: 0.95em; 
    color: #555; 
    line-height: 1.6;
}


@media (max-width: 992px) {
    .product-list-container {
        max-width: 90%; 
    }

    
}

@media (max-width: 768px) {
    .main-content-section {
        margin-top: 110px; 
        padding-bottom: 40px;
    }

    .product-list-container {
        padding: 20px;
        width: 95%;
    }

    .list-header {
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 15px 20px;
    }

    .list-header h2 {
        font-size: 1.3em; 
    }

    .product-item {
        flex-wrap: wrap; 
        justify-content: center; 
        text-align: center; 
        padding: 15px 0;
    }

    .product-logo {
  margin-right: 0;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  width: 50%;
  height: 50%;
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; 
}



    .product-info {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .product-info h3 {
        font-size: 1.3em; 
    }
    .product-info p {
        font-size: 0.9em; 
    }
}

@media (max-width: 480px) {


    .product-logo {
    width: 280px;
    height: 200px;
    border-radius: 12px;
    
    margin-bottom: 20px;
}

    .list-header h2 {
        font-size: 1.2em; 
    }
   
    .product-info h3 {
        font-size: 1.2em; 
    }
    .product-info p {
        font-size: 0.8em; 
    }
}



