/* styles.css */

/* General body styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

/* Header styles */
header {
  background: #005a9c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
}

header p {
  margin: 10px 0;
}

header a {
  color: #ffd700;
  text-decoration: none;
}

/* Main content area */
main {
  padding: 20px;
}

/* Section styles */
section {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* First letter of sections to have a large size */
section p::first-letter {
  font-size: 1.5em;
  color: #005a9c;
}

/* Header within sections */
section h1, section h2, section h3 {
  color: #005a9c;
}

/* Link styles */
a {
  color: #005a9c;
}

a:hover {
  text-decoration: underline;
}

/* Unordered list styles */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* Footer styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

/* Correcting the HTML where the closing tag for h1 was incorrect */
.proposal h1 {
  font-size: 1.75em;
}

/* Adding space above headings in the proposal section for better readability */
.proposal h1, .proposal h2, .proposal h3 {
  margin-top: 20px;
}

/* Ensuring that images have a maximum width to prevent overflow */
.photos img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* Placeholder styling for the photos section, to be replaced with actual images */
.photos {
  background: #e4e4e4;
  padding: 20px;
  text-align: center;
}

/* Contact information styling */
.statement h3 {
  margin-top: 20px;
}

.statement p {
  margin-bottom: 10px;
}

/* Styling for special emphasis in paragraphs */
.statement p.important {
  font-weight: bold;
  color: #005a9c;
}

