*{
    margin: 0;
    padding: 0;
}

/* #british-logo{
    height: 100px;
    display: flex;
    /* border: 2px solid black; */
/* } */
 
/* .navbar form{
   margin-left: 20vh; 
   margin-top: 20px;
  position: relative;
} */


body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ccc;
}

.logo img {
    height: 40px;
}

.search-bar {
    display: flex;
}

.search-bar input {
    padding: 5px;
}

.search-bar button {
    padding: 5px;
    background-color: blue;
    color: white;
    border: none;
}

nav ul {
    display: flex;
    list-style: none;
    /* margin: 0;
    padding: 0; */
}

nav ul li {
    margin: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #504343;
}

main {
    padding: 20px;
}

.contact-us h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-options {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.option {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px black;
    justify-content: space-evenly;
}

.option img{
    width: 150px;
}

.other-requests h2, .feedback h2 {
    text-align: center;
    margin: 40px 0;
}

.requests-grid {
    display: flex;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
    gap: 20px;
}

.request {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px black;
}

footer {
    background-color: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 5px 0;
}

footer ul li a {
    text-decoration: none;
    color: white;
}


