/* In-page sections: Services, Terms, About, Contact, Weather */
.main-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 16px 24px;
}

.content-block {
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
}

.content-block:first-child {
  border-top: none;
}

.content-block__title {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: var(--color-heading);
}

h1.content-block__title--page {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin-bottom: 16px;
}

.content-block p {
  margin: 0 0 12px;
  max-width: 70ch;
  font-size: 15px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.contact-list li {
  margin-bottom: 10px;
  padding-left: 0;
}

.contact-list a {
  word-break: break-word;
}

.weather-note {
  color: #555;
  font-style: italic;
}

/* Terms accordion */
.terms-accordion {
  max-width: 100%;
  margin-top: 10px;
}

.terms-accordion details {
  border: 1px solid #eee;
  border-left: none;
  border-right: none;
  background: #fff;
  margin: 0 0 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.terms-accordion summary {
  cursor: pointer;
  padding: 14px 14px;
  background: #fafafa;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.terms-accordion details:last-child {
  margin-bottom: 0;
}

.terms-accordion summary::-webkit-details-marker {
  display: none;
}

.terms-accordion summary::after {
  content: "chevron_right";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #777;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.terms-accordion details[open] summary::after {
  content: "expand_more";
}

.terms-acc__icon {
  width: 22px;
  height: 22px;
  color: #9b9b9b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.terms-acc__icon .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.terms-acc__label {
  font-size: 13px;
}

.terms-accordion__body {
  padding: 0 14px 14px;
}

.terms-accordion__body p {
  margin: 10px 0;
  max-width: 80ch;
}

.terms-accordion__body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

/* Terms page breadcrumb like original */
.page-crumbs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  font-size: 12px;
  color: #888;
  margin: -6px 0 10px;
}

.page-crumbs a {
  color: #888;
  text-decoration: none;
}

.page-crumbs a:hover {
  color: var(--color-orange, #f78b00);
  text-decoration: underline;
}

