* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #192a3d;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.center {
  text-align: center;
  margin: 40px 0;
}

/* Header */
.site-header {
  background: #f6c7fb;
  padding: 5px 0;
}

.logo img {
  height: 150px;
  width: auto;
}

.header-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

.giving-link {
  text-decoration: none;
}

.header-links img {
  width: 40px;
  height: 40px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-section {
  margin: 50px auto;
  max-width: 800px;
  line-height: 1.7;
}

.content-section p {
  margin-bottom: 20px;
}

.content-section {
  max-width: 1100px;   /* or 1200px if you want it roomy */
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
}


.signature {
  margin-top: 30px;
  font-style: italic;
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
}


/* absolutely centered to the container, not the leftover space */
.header-message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #192a3d;
  white-space: nowrap;
}

/* Section titles */
.section-title {
  background-image: url("images/osb_product_banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fdeccb;
  text-align: center;
}

.section-title h2 {
  display: inline-block;
  font-size: 48px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 20px auto;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 20px;
  margin: 0 auto;
}

.product-card p {
  margin-top: 10px;
  text-decoration: none;
  font-weight:bold;
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

/* Button */
.button {
  display: inline-block;
  padding: 10px 24px;
  background: #f6c6fa;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.testimonials {
  background: #f2f5f7;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex-wrap: wrap; /* wraps nicely on small screens */
}

.testimonials blockquote {
  font-style: italic;
  white-space: nowrap;
}

.testimonials blockquote span {
  margin-left: 6px;
  font-weight: 600;
}

.testimonials blockquote:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #999;
}


/* Footer */
.site-footer {
  background: #f6c7fb;
  padding: 5px 20px;
  text-align: center;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .logo img {
    height: 100px;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .header-message {
    position: static;
    transform: none;
    white-space: normal;
  }
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

