body, html {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #06eeee; /* Light gray background */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#content {
  width: 90%;
  max-width: 1200px; /* Adjust maximum width as needed */
  padding: 20px;
  text-align: center;
  margin: 0 auto; /* Center content horizontally */
}

#header, #footer {
  background-color: #fffefd; /* White background */
  color: #343a40; /* Dark gray text color */
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add some space between header/footer and content */
}

#navigation {
  background-color: #ffffff; /* White background */
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add some space between navigation and content */
}

#navigation a {
  color: #343a40; /* Dark gray text color */
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

#navigation a:hover {
  color: #ffc107; /* Yellow color on hover */
}

.gallery-image {
  width: 100%;
  height: auto;
}

.subtitle {
  text-align: center;
  font-style: italic;
}

.agent-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #ccc; 
  border-radius: 10px;
  padding: 20px;
}

.agent-profile img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 50%; 
}

.agent-info {
  flex: 1;
}

#expense-image {
  max-width: 60%; 
  height: auto;
  display: block; 
  margin: 0 auto; 
} 


img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto 20px; 
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px; 
}

.agent-info h3 {
  margin-top: 0; 
}

h1, h2, h3 {
  color: rgb(0, 0, 0);
}












































































































































































































































































































































