/* Global styles */
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  background-image: url("Images/3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  color: #00a8e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header styles */
header {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 36px;
  margin: 0;
}

nav ul {
  display: flex;
  margin-right: 100px;
}

nav li {
  margin-left: 100px;
}

nav a {
  font-size: 30px;
}

/* Main styles */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

section {
  margin-bottom: 40px;
}

section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

section ul {
  display: flex;
  flex-wrap: wrap;
}

section li {
  flex: 1 1 300px;
  margin-right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 4px;
}

section li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

section li img {
  margin-bottom: 20px;
}

section li h4 {
  font-size: 20px;
  margin: 0;
}

section li p {
  font-size: 16px;
  margin: 10px 0;
}

/* Form styles */
label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

input[type="submit"] {
  background-color: #00a8e8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0080ff;
}
footer {
  position: relative;
  bottom: 0px;
  width: 100%;
  height: 2.5rem;
  background-color: black;
  color: white;
  text-align: center;
  padding: 0.5rem;
}
main > section:last-of-type {
  margin-bottom: 100px;
  min-height: calc(100vh - 190px);
}
.logo {
  width: 55%; /* Adjust to desired size */
  height: auto;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}