p.solid {border-style: solid text-align: center;}
div.a {
  text-align: center;
}

 /* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 10px
  padding: 1px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
} 

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f6f7fb;

}

.hero{

    position:relative;

    min-height:100vh;

    background:url(images/usvi-sunset.jpg) center center/cover no-repeat;

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.55)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    width:92%;

    max-width:1300px;

    margin:auto;

    padding-top:70px;

}

.hero-title{

    color:white;

    margin-bottom:40px;

}

.hero-title h1{

    font-size:64px;

    font-weight:700;

    line-height:1.1;

}

.hero-title p{

    font-size:24px;

    color:#FFD4B5;

    margin-top:10px;

}

.search-card{

    background:rgba(255,255,255,.95);

    border-radius:24px;

    padding:45px;

    max-width:900px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.search-card h2{

    text-align:center;

    font-size:46px;

    margin-bottom:15px;

    color:#1d2736;

}

.search-card p{

    text-align:center;

    color:#777;

    margin-bottom:35px;

    font-size:18px;

}

.search-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.search-grid select{

    height:60px;

    border:none;

    border-radius:14px;

    background:#fff;

    padding:0 20px;

    font-size:16px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    outline:none;

}

.search-btn{

    width:100%;

    margin-top:28px;

    height:65px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#ff8a34,#ff5d28);

    color:white;

    font-size:22px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.search-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(255,115,45,.35);

}

.categories{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.category{

    background:white;

    border-radius:24px;

    text-align:center;

    padding:40px 20px;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.category:hover{

    transform:translateY(-10px);

}

.icon{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff4ed;

    font-size:40px;

    margin-bottom:20px;

}

.category h3{

    font-size:28px;

    color:#1d2736;

    margin-bottom:10px;

}

.category p{

    color:#666;

}

.trust-bar{

    margin-top:55px;

    background:#13233e;

    color:white;

    border-radius:18px;

    padding:25px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    font-size:18px;

}

@media(max-width:900px){

.hero-title h1{

font-size:46px;

}

.search-grid{

grid-template-columns:1fr 1fr;

}

.categories{

grid-template-columns:1fr 1fr;

}

.trust-bar{

grid-template-columns:1fr 1fr;

row-gap:20px;

}

}

@media(max-width:600px){

.search-grid{

grid-template-columns:1fr;

}

.categories{

grid-template-columns:1fr;

}

.trust-bar{

grid-template-columns:1fr;

}

.hero-title h1{

font-size:38px;

}

.search-card{

padding:25px;

}

}