body {

font-family: Arial, sans-serif;
 margin: 0;
 padding: 0;
background-color: #e3e3e3;
}
header {
background-color: none;
color: #fff;
 padding: 10px 20px;
display: flex;
 justify-content: space-between;
 align-items: center;
}

header img {
    color: white(0, 81, 255);
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

    ul {
        display: flex;
        justify-content: center;       
        gap: 60px;                     
        list-style: none;
        padding: 0;
        margin: 0;
      }

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: white;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: rgb(139, 138, 138);
}

.container {
    color: #ffffff;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: transparent;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
border-top: 6px solid #2c3e50;
}

h1 {
text-align: center;
color: white;
margin-bottom: 20px;
font-size: 36px;
}

.form-group {
margin-bottom: 15px;
}

.form-group label {
display: block;
margin-bottom: 5px;
color: white;
font-weight: bold;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

.form-group textarea {
resize: vertical;
height: 150px;
}

.form-group button {
display: inline-block;
padding: 10px 15px;
background-color: #0c0c0c;
color: #fff;
 border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.form-group button:hover {
background-color: #6b6968;
 }
.info,
.map,
.social-media {
 margin-top: 30px;
padding: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.3s ease-in-out;
border-top: 4px solid #0c0c0c;
}
.info:hover,
.map:hover,
.social-media:hover {
 transform: translateY(-5px);
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.info h2,
.map h2,
 .social-media h2 {
 color: #0c0c0c;
margin-bottom: 10px;
font-size: 28px;
}
.info p,
.social-media p {
 color: #040405;
font-size: 18px;
line-height: 1.6;
}
.social-media a {
color: #080808;
text-decoration: none;
font-size: 24px;
margin: 0 10px;
transition: color 0.3s ease-in-out;
}
.social-media a:hover {
 color: #4c4a4a;
}
.map iframe {
 width: 100%;
height: 300px;
 border: none;
 border-radius: 10px;
}
.feedback {
margin-top: 30px;
 padding: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.3s ease-in-out;
border-top: 4px solid #0a0a0a;
}

.feedback:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.feedback h2 {
color: #0d0d0e;
margin-bottom: 10px;
font-size: 28px;
}

.feedback textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
resize: vertical;
height: 150px;
margin-bottom: 15px;
}

.feedback button {
display: inline-block;
padding: 10px 15px;
background-color: #060606;
color: #fff;
border: none;
 border-radius: 5px;
 cursor: pointer;
 transition: background-color 0.3s ease-in-out;
}

.feedback button:hover {
background-color: #787676;
 }

 footer{
    position: static;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;  
    background-color: black;
    font-size: 10px;
    background-size: cover;
    padding: 0px;
    }

    footer a{
        color: blue;
    }

    .social-icons {
        color: white;
        margin: 20px 0;
        text-align: center;
    }
    
    .social-icons a {
        font-size: 16px; /* Try 14px, 16px, or 18px depending on your design */
        margin: 0 8px;
        color: white;
        transition: color 0.3s ease;
    }
    
    .social-icons a:hover {
        color: #807d7d; /* match site accent color */
    }
    