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

body{
    font-family:'Cairo',sans-serif;
    background:#f5f8f6;
    color:#1f2937;
}

header{
    background:white;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.logos{
    display:flex;
    justify-content:center;
    gap:40px;
    align-items:center;
    margin-bottom:20px;
}

.logo{
    height:90px;
}

h1{
    color:#0F766E;
    font-size:38px;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    font-size:18px;
}

main{
    max-width:700px;
    margin:60px auto;
    padding:20px;
    text-align:center;
}

.welcome{
    font-size:24px;
    font-weight:700;
    margin-bottom:40px;
}

.booking-btn{

    width:100%;

    padding:22px;

    margin:20px 0;

    border:none;

    border-radius:15px;

    font-size:22px;

    font-family:'Cairo',sans-serif;

    cursor:pointer;

    background:#0F766E;

    color:white;

    transition:.3s;

    box-shadow:0 8px 20px rgba(15,118,110,.25);

}

.booking-btn:hover{

transform:translateY(-4px);

background:#0B5F59;

box-shadow:0 12px 25px rgba(15,118,110,.35);

}

footer{

margin-top:70px;

padding:25px;

background:white;

text-align:center;

color:#777;

font-size:15px;

}

@media(max-width:768px){

.logo{

height:70px;

}

h1{

font-size:30px;

}

.booking-btn{

font-size:20px;

}

}
