/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Header */
header {
  background: #0078D7;
  color: white;
  padding: 1rem 0;
  text-align: center;
  margin-top: 60px; /* Space to avoid overlapping with ribbon */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

/* Section Styles */
.section {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Layout for sections with images */
.content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.text {
  flex: 1;
  min-width: 300px;
}

.image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.button {
  display: inline-block;
  background-color: #0078D7;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #005bb5;
}

/* Ribbon Navigation */
.ribbon {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
}

.ribbon a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
}

.ribbon a:hover {
  background-color: #575757;
  border-radius: 5px;
}

/* Warning Message Styles */
.warning {
  background-color: #f8d7da; /* Light red background */
  color: #721c24; /* Dark red text */
  padding: 20px;
  text-align: center;
  border: 1px solid #f5c6cb; /* Light red border */
  border-radius: 10px;
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
}

.warning p {
  margin: 0;
  padding: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #0078D7;
  color: white;
}

/* Home Button Styles */
.home-button {
  position: absolute;
  top: 5px; /* Adjusted top margin to move it upwards */
  right: 20px;
  background-color: #000000; /* Black background */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  z-index: 1000; /* Ensure it's above other elements */
}

.home-button:hover {
  background-color: #333333; /* Darker black/grey on hover */
}
