.logistic-background {
    background-color: #0b73b6;
    padding: 4rem 0;
    position: relative;
}

.logistic-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.logistic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.logistic-content {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius:8px;
}

.info-header {
    border-left: 5px solid #0b73b6;
    padding-left: 1rem;
    margin-top: 40px;
    margin-bottom: 10px;
}

.info-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.welcome-message {
    background-color: #eee;
    padding: .333rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.welcome-message p {
    margin: 0;
    line-height: 1.6;
    text-align: match-parent;
    text-size-adjust: 105%;
    
}

.info-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-column {
    flex: 1;
    min-width: 300px;
}

.item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.item i {
    font-size: 1.5rem;
    color: #0b73b6;
    margin-top: 5px;
}

.item h5 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.item p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.restaurant-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.restaurant-icon {
    font-size: 3rem;
    color: #0b73b6;
    margin-top: 10px;
    width: 50px;
    text-align: center;
}

.restaurant-details h3 {
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.restaurant-details p {
    margin: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.restaurant-details p i {
    margin-right: 0.5rem;
    color: #0b73b6;
}

@media (max-width: 992px) {
    .logistic-content {
        clip-path: none;
    }
    .logistic-background::before {
        display: none;
    }
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-sections {
        flex-direction: column;
    }
}

.bord-b{
    border-bottom: 4px solid #0b73b6;
    padding-top: 4px;
    padding-bottom: 4px;
}

ol.flex-column li::marker {
    font-weight: bold;
}