body{
    margin:0;
}

.hero{
    height:100vh;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.20),
            rgba(0,0,0,0.20)
        ),
        url("hero.jpg");

    background-size:cover;

    /* Show more coastline and ocean */
    background-position:center 20%;

    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:white;
}

.hero-content{
    max-width:900px;
    padding:20px;
}

.hero h1{
    font-size:6rem;
    margin-bottom:20px;
    font-weight:700;
}

.hero h2{
    font-size:2.2rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.6;
    max-width:800px;
    margin:0 auto 30px;
}

.cta-button{
    display:inline-block;
    background:white;
    color:#0b2d4f;
    padding:16px 36px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.cta-button:hover{
    transform:translateY(-2px);
}

.roman{
    max-width:1200px;
    margin:100px auto;
    padding:0 40px;

    display:flex;
    gap:60px;
    align-items:center;
}

.roman-photo{
    flex:1;
}

.roman-photo img:first-child{
    width:100%;
    border-radius:15px;
}

.roman-photo img:last-child{
    width:75%;
    margin-top:20px;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.roman-text{
    flex:1.4;
}

.roman-text h2{
    font-size:3rem;
    line-height:1.15;
    margin-bottom:35px;
    color:#1f2937;
}

.roman-text p{
    font-size:1.05rem;
    line-height:2;
    color:#555;
    margin-bottom:28px;
}

.section-label{
    color:#d86f3d;
    font-size:0.9rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:4px;
    margin-bottom:15px;
}

.roman .section-label{
    color:#d86f3d !important;
}

.roman{
    padding:100px 8%;
}

.roman-photo img{
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.wanderlust-logo{
    width:100%;
    max-width:none;
    display:block;
    margin-top:20px;
}

.credibility{
    background:#faf8f5;
    padding:80px 8%;
    text-align:center;
}

.credibility h2{
    font-size:2rem;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.credibility-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:0;
    margin-top:40px;
}

.cred-item{
    padding:30px 20px;
    border-left:1px solid #ece7df;
    text-align:center;
}

.cred-item span{
    display:block;
    font-size:2rem;
    margin-bottom:15px;
}

.cred-item:first-child{
    border-left:none;
}

.cred-item:last-child{
    border-right:none;
}

.cred-icon{
    display:block;
    font-size:2rem;
    margin-bottom:15px;
}

.cred-item p{
    font-size:.95rem;
    line-height:1.4;
    font-weight:500;
}



