/* General Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  background-image: url("https://toronto.ctvnews.ca/content/dam/cp24/en/images/2024/7/16/toronto-flooding-1-6966019-1721158590716.jpg");
  background-size: cover;
  background-position: center;
}

.container {
  width: 90%; 
  max-width: 900px; 
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.header {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  padding: 20px 0;
}

.header h1 {
  color: #d32f2f;
  font-size: 1.5rem; 
  text-align: center; 
}

.back-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: rgb(103, 0, 0);
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 0%; 
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.back-button:hover {
  background-color: #ffffff;
  color: black;
  border: 2px solid #d32f2f;
}

/* Banner Image */
.banner img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Two Columns Layout */
.content {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;
  margin-bottom: 30px;
  text-align: justify;
}

.left-column {
  flex: 1 1 100%; 
}

.left-column img {
  width: 100%; /* Full width on mobile */
  height: auto;
  border-radius: 5px;
}

.right-column {
  flex: 1 1 100%; 
  padding-top: 20px;
}

.right-column p {
  font-size: 1rem; 
  line-height: 1.6;
}

/* Details Section */
.details {
  margin-bottom: 20px;
}

.details h2 {
  color: #d32f2f;
  margin-bottom: 10px;
}

.details ul {
  list-style-type: square;
  padding-left: 20px;
}

.details ul li {
  margin-bottom: 5px;
}

.details p {
  margin-top: 10px;
}

/* Contact Details */
.contacts {
  margin-bottom: 20px;
}

.contacts h2 {
  color: #d32f2f;
}

/* Red Notice Section */
.download-notice {
  text-align: center;
  margin: 30px 0;
}

.red-notice {
  color: #d32f2f;
  font-weight: bold;
  margin-bottom: 10px;
}

.download-button {
  text-decoration: none;
  color: white;
  background-color: #d32f2f;
  padding: 10px 20px;
  border-radius: 0%;
  display: inline-block;
}

.download-button:hover {
  background-color: #b71c1c;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #e0e0e0;
  border-radius: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
  .header {
    flex-direction: column; 
  }

  .header h1 {
    font-size: 1.2rem; 
  }

  .back-button {
    width: 100%; 
    text-align: center; 
  }

  .content {
    flex-direction: column; 
  }

  .left-column,
  .right-column {
    flex: 1 1 100%; 
  }

  .right-column p {
    font-size: 0.9rem; 
  }

  .details h2,
  .contacts h2 {
    font-size: 1.1rem; 
  }

  .details ul {
    padding-left: 15px; 
  }

  .download-notice {
    margin: 20px 0; 
  }
}
