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

/* ===========================
   Page Layout
=========================== */
html,
body{
    width:100%;
    height:100%;
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
}

body{
    display:flex;
    flex-direction:column;
}

/* ===========================
   Header
=========================== */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#F9FAFB;
    border-bottom:1px solid #E5E7EB;
    flex-shrink:0;
}

.header-left{
    display:flex;
    align-items:center;
}

.header-logo{
    height:50px;
    display:block;
}

.header-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-icon img{
    width:24px;
    height:24px;
    display:block;
}

/* ===========================
   Hero Banner
=========================== */
main{
    flex:1;
}

.hero-section{
    width:100%;
    height:100%;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;      /* Change to 'contain' if you don't want cropping */
    display:block;
}

/* ===========================
   Mobile
=========================== */
@media (max-width:768px){

    header{
        padding:12px 15px;
    }

    .header-logo{
        height:40px;
    }

    .social-icon img{
        width:22px;
        height:22px;
    }
}