/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header, footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
}

header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.logo img {
  height: 50px;
  width: auto;
}

/* Menu Styles */
.menu {
  background-color: #222;
  padding: 10px;
  text-align: center;
}

.menu a {
  color: white;
  margin: 0 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 5px;
}

.menu a:hover {
  background-color: #1b1d4b;
  color: #fff;
}

/* Banner Styles */
.banner {
  background-color: #7a0c16;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  animation: flash 1s infinite;
}

.banner a {
  color: white;
  background-color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

@keyframes flash {
  50% { opacity: 0.6; }
}

/* Contact Buttons Styles */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-buttons a {
  color: white;
  background-color: #1b1d4b;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-buttons a:hover {
  background-color: #131438;
}

/* Content Styles */
.content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid black;
  background-color: #f9f9f9;
  text-align: left;
}

.content img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.content h2 {
  font-size: 1.8rem;
  color: #1b1d4b;
  margin-top: 0;
}

.content h3 {
  font-size: 1.4rem;
  color: #333;
}

.content p, .content ul {
  line-height: 1.6;
}

.content ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Footer Styles */
footer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.2rem;
  }

  .menu a {
    display: block;
    margin: 10px 0;
  }

  .content {
    padding: 10px;
  }
}