@media (max-width: 991.98px) {
    .coverage-group {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .item-content {
        margin: 20px 20px 5px 20px !important;
    }
    .trip-desc {
        min-height: 40px;
    }
}

@media (max-width: 575.98px) {
    .coverage-group {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

.coverage-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-link:hover {
    transform: translateY(-5px);
}

.coverage-link:hover .coverage-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.coverage-item {
    border-radius: 15px;
    background-color: white;
    border: 2px solid #1B1464;
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

.coverage-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coverage-header {
    display: flex;
    background-color: #1B1464;
    border-radius: 10px 10px 0 0;
    justify-content: center;
}

.start-your-trip-section {
    background-color: #F0F0F5;
}

.your-trip-title {
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    margin: 15px !important;
    align-items: center;
}

.item-content {
    display: flex;
    flex-direction: column;
    margin: 20px 10px 5px 10px;
    gap: 10px;
    justify-content: center;
    align-self: center;
    align-items: center;
}

.card-icon {
    height: 80px;
    width: 80px;
}

.trip-desc {
    text-align: center;
    margin: 10px 0 !important;
    font-size: 16px;
    color: #1B1464
}

.green-arrow {
    height: 45px;
    width: 45px;
    margin: 1rem 0;
}