.advantage-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #171717;
    text-align: center;
}
  
.advantage-container h2 {
    font-family: 'Mulish', sans-serif;
    font-size: 45px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 56px;
}

.advantage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.advantage-card {
    width: 328px;
    height: 202px;
    border-radius: 10px;
    border: 2px solid #fff;
    background-color: transparent;
    text-align: center;
    color: #fff;
    padding: 16px;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; 
    border-radius: 50%;
}

.advantage-icon img {
    width: 84px;
    height: 84px;
    object-fit: cover; 
    border-radius: 50%; 
}

.advantage-icon i {
    font-size: 40px;
    color: #fff;
}

.advantage-card h3 {
    font-family: 'Mulish', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin: 0;
}

.advantage-card p {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
}

@media (max-width: 768px) {
    .advantage-container h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .advantage-card {   
        width: 362px;
        height: 102px;
        border-radius: 10px;
        display: grid;
        grid-template-columns: 48px auto;
        grid-template-rows: auto auto;
        gap: 8px;
        align-items: center;
        overflow: hidden;
    }
    .advantage-icon {
        grid-column: 1;        
        grid-row: 1 / span 2;  
        width: 48px;
        height: 48px;
        margin: 0; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .advantage-icon img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
    }
    .advantage-card h3 {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        font-size: 18px;
        margin: 0;
    }
    .advantage-card p {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
    }
    .advantage-container h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .advantage-card h3 {
        font-size: 14px;
    }
    .advantage-card p {
        font-size: 12px;
    }
    .advantage-grid {
        padding: 0 10px;
    }
    .advantage-container h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}