*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:url('/images/background.jpg') center center/cover no-repeat fixed;
    min-height:100vh;
    color:white;
}

.overlay{
    background:rgba(0,0,0,.45);
    min-height:100vh;
    padding:60px 20px;
}

header{
    text-align:center;
    margin-bottom:50px;
}

.logo{
    width:320px;
    margin-bottom:20px;
}

h1{
    font-size:4rem;
    font-weight:700;
}

header p{
    margin-top:10px;
    font-size:1.2rem;
    opacity:.9;
}

.cards{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.card{
    width:320px;
    padding:30px;
    border-radius:20px;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.card h2{
    margin-bottom:15px;
}

.card p{
    margin-bottom:25px;
    opacity:.85;
}

.button{
    display:inline-block;
    background:#0ea5e9;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    transition:.25s;
}

.button:hover{
    background:#0284c7;
}

.map{
    max-width:1100px;
    margin:0 auto;
}

.map h2{
    margin-bottom:20px;
}

.map iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

@media(max-width:768px){
    h1{
        font-size:2.5rem;
    }

    .map iframe{
        height:350px;
    }
}