/* ======================================================
   HomeExplora
   Production Website Styles
   © 2026 Emurox Studios
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f6f8;
    color:#333;
    line-height:1.8;
}

.container{
    width:92%;
    max-width:1000px;
    margin:auto;
}

header{
    background:#495057;
    color:white;
    padding:45px 20px;
    text-align:center;
}

header h1{
    color:#d4af37;
    font-size:40px;
    margin-bottom:10px;
}

header p{
    color:#ececec;
    font-size:18px;
}

main{
    padding:50px 0;
}

.card{
    background:white;
    padding:35px;
    border-radius:14px;
    margin-bottom:30px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.card h2{
    color:#495057;
    margin-bottom:15px;
    border-left:5px solid #d4af37;
    padding-left:12px;
}

.card h3{
    margin-top:25px;
    margin-bottom:10px;
    color:#555;
}

.card p{
    margin-bottom:16px;
}

.card ul{
    margin-left:22px;
    margin-bottom:20px;
}

.card li{
    margin-bottom:10px;
}

a{
    color:#d4af37;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.notice{
    background:#fff8e6;
    border-left:6px solid #d4af37;
    padding:18px;
    border-radius:8px;
    margin:25px 0;
}

footer{
    margin-top:50px;
    background:#495057;
    color:white;
    text-align:center;
    padding:35px;
}

footer a{
    color:#d4af37;
}

.socials{
    margin-top:20px;
}

.socials a{
    margin:0 10px;
}

@media(max-width:700px){

header h1{
    font-size:30px;
}

.card{
    padding:25px;
}

}