body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  color: #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

p, h3 {
  color: #555;
}

.page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
}

.section-brand {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customer-logo img {
  width: 100%;
  max-width: 12rem;
}

.customer-logo-small img {
  width: 100%;
  max-width: 6rem;
}

.project-title {
  margin: 0;
}

.section-title {
  margin: 1rem 0;
}

.section-details {
  display: flex;
  justify-content: space-between;
  margin: 1.25rem 0;
}

.section-details div {
  font-size: 0.9em;
  color: #777; /* Subdued gray */
}

.section-key {
  font-weight: 700;
}

h4.heading {
  color: #367DA2;
}

h4.sub-heading {
  color: rgba(85, 85, 85, .9);
}

h4.heading, h4.sub-heading {
  font-size: 1rem;
  font-weight: 600;
}

.section-description p {
  padding-bottom: 1rem;
}

.summary {
  margin-bottom: 20px;
}

.summary p {
  line-height: 1.6;
  margin: 10px 0;
}

.project-details {
  margin-bottom: 20px;
}

.project-details h2 {
  font-size: 1.3em;
  color: #5a8b7e;
  margin-bottom: 10px;
}

.project-details ul {
  padding-left: 20px;
  line-height: 1.6;
}

.project-details ul li {
  margin-bottom: 10px;
}

.value-section {
  background-color: #eef7f5; /* Light green-blue background */
  padding: 15px;
  border-radius: 5px;
  border-left: 4px solid #5a8b7e; /* Accent border */
  margin: 20px 0;
}

.value-section h2 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-section p {
  line-height: 1.6;
  padding-bottom: 1rem;
  margin: 0;
}

.tags-box {
  padding: 1rem 0;
}

.button-panel {
  padding: 1.5rem 0;
}

.section-customer-logo {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .section-brand {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
  }

  .customer-logo {
    margin: 1rem 0;
  }

  .section-details {
    display: flex;
    margin: 1.25rem 0;
    flex-direction: column;
  }  
}
