.airportPrice{
    background:#f7f8fb;
}

.priceGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.priceCard{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.priceCard h3{
    background:#0f2b58;
    color:#fff;
    padding:18px;
    text-align:center;
    font-size:24px;
}

.priceCard.green h3{
    background:#2f8d4d;
}

.priceCard.navy h3{
    background:#1b3569;
}

.priceCard.red h3{
    background:#d13b57;
}

.priceCard table{
    width:100%;
    border-collapse:collapse;
}

.priceCard th,
.priceCard td{
    padding:12px 20px;
    border-bottom:1px solid #ececec;
}

.priceCard td:last-child{
    text-align:right;
    color:#c79a41;
    font-weight:700;
}

.space td{
    border:none;
    height:12px;
}

.infoGrid{
    margin-top:40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.infoBox{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.infoBox h3,
.luggageBox h3{
    margin-bottom:20px;
    color:#0f2b58;
    font-size:26px;
}

.infoBox table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;
}

.infoBox table td,
.infoBox table th{
    padding:10px 0;
    border-bottom:1px solid #eee;
    text-align:left;
}

.city{
    line-height:2;
    color:#666;
}

.infoBox ul,
.luggageBox ul{
    padding-left:20px;
}

.infoBox li,
.luggageBox li{
    margin-bottom:12px;
    line-height:1.9;
}

.luggageBox{
    margin-top:35px;
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@media(max-width:1100px){

    .priceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .infoGrid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .priceGrid{
        grid-template-columns:1fr;
    }

}