.tour-packages-section{
    padding:70px 0;
    background:#f5f4ef;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#0b2c6b;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    margin-bottom:40px;
}

.package-row{
    background:#fff;
    border-radius:12px;
    padding:20px 30px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.package-row:hover{
    transform:translateY(-3px);
}

.package-name{
    width:30%;
}

.package-name h3{
    margin:0;
    color:#0b2c6b;
    font-size:30px;
    font-weight:700;
}

.package-name span{
    font-size:18px;
    color:#555;
}

.package-location{
    width:50%;
    color:#444;
    font-size:16px;
}

.package-btn{
    width:20%;
    text-align:right;
}

.package-btn a{
    display:inline-block;
    background:#ff5b4d;
    color:#fff;
    padding:10px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.package-btn a:hover{
    background:#f9b000;
    color:#000;
}

@media(max-width:768px){

    .package-row{
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
    }

    .package-name,
    .package-location,
    .package-btn{
        width:100%;
    }

    .package-location{
        margin:15px 0;
    }

    .package-btn{
        text-align:left;
    }

    .package-name h3{
        font-size:24px;
    }
}