body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background-color: #ffffff;
  border-bottom:2px solid #b80d24;
  color: white;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  text-align: center;
  font-size: 28px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #b80d24;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 500;
}

nav ul li a:hover {
  background-color: #8e0a1b;
  border-radius: 5px;
  color:white;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.main-content {
  flex: 2;
  min-width: 300px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin-right: 20px;
}

.sidebar {
  flex: 1;
  min-width: 250px;
  background-color: #eaeaea;
  padding: 20px;
  border-radius: 8px;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #b80d24;
  font-weight: 500;
}

/* Contact Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

form label {
  font-weight: 500;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
}

form button {
  background-color: #b80d24;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #8e0a1b;
}

footer {
  background-color: #b80d24;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  .main-content,
  .sidebar {
    margin-right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
}
