/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

/* BODY */
body{
    background:#f2f2f2;
}

/* HEADER */
header{
    background:#4CAF50;
    color:white;
    text-align:center;
    padding:15px;
}

.topnav {
    background-color: #EA7729;
    overflow: hidden;
}

.topnav a {
    float: left;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav .icon {
    display: none;
}

/* MOBILE */
@media screen and (max-width:600px){
    .topnav a:not(:first-child){display:none;}
    .topnav a.icon{
        float:right;
        display:block;
    }
    .topnav.responsive a {
        float:none;
        display:block;
        text-align:left;
    }
}/* IMAGE */
.gallery{
    width:60%;
    margin:20px auto;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
}

/* HELP BOX */
.help-box{
    background:white;
    width:70%;
    margin:20px auto;
    padding:20px;
    box-shadow:0 0 5px gray;
}

/* FORM */
form{
    display:flex;
    flex-direction:column;
}

label{
    margin-top:10px;
}

input, textarea{
    padding:10px;
    margin-top:5px;
    border:1px solid #ccc;
}

button{
    margin-top:15px;
    padding:10px;
    background:#4CAF50;
    color:white;
    border:none;
    cursor:pointer;
}

button:hover{
    background:#45a049;
}

/* QUERY DISPLAY */
.query-box{
    background:#fff;
    padding:15px;
    margin-top:10px;
    border-left:5px solid #4CAF50;
    box-shadow:0 0 5px gray;
}

/* FOOTER */
.footer{
    background:#24262b;
    color:white;
    padding:40px;
}

.row{
    display:flex;
    flex-wrap:wrap;
}

.footer-col{
    width:25%;
    padding:10px;
}

.footer-col h4{
    margin-bottom:15px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin:5px 0;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
}

.footer-col ul li a:hover{
    color:white;
}

.social-links a{
    display:inline-block;
    margin:5px;
    color:white;
}

/* RESPONSIVE */
@media(max-width:768px){
    .footer-col{
        width:50%;
    }
}

@media(max-width:500px){
    .footer-col{
        width:100%;
    }
}