/* styles.css */
/* Import Source Sans Pro from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --grey-hero: #878787;
  --text: #222;
  --white: #fff;
  --maxw: 960px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans Pro", sans-serif !important;;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  font-weight:400;
}

/* Top images */
.top-images {
  display: flex;
  gap: 20px;
  max-width: var(--maxw);
  margin: 20px auto;
  padding: 0 20px;
}
.top-images img {
  height: auto;
  max-width: 100%;
  border: 4px solid transparent;
}

.logo-block {
  display: flex;
  flex-direction: column;     /* stacks text below image */
  align-items: center;        /* centers text under image */
}

/* Hero */
.hero {
  background: var(--grey-hero);
  color: var(--white);
  padding: clamp(40px, 8vw, 120px) 0;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.hero h1 {
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.25;
  margin: 0;
}

/* Content */
.content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 20px;
}
.section {
  margin: 40px 0;
}
.section h2 {
  font-weight:400;
  margin-bottom: 16px;
  text-align: left;
}
.section h3 {
  font-weight:300;
  margin-bottom: 16px;
  text-align: center;
}
.section p {
  font-size: clamp(15px, 1.4vw, 18px);
}

/* Footer */
.footer {
  padding: 40px 20px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.footer-block {
  flex: 1;
  min-width: 200px;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
}
.footer-block img {
  max-width: 100%;
  height: auto;
}

.center-div {
  margin: 0 auto;
  width: 200px; /* or any fixed width */
}

/* Responsive */
@media (max-width: 768px) {
  .top-images {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner {
    flex-direction: column;
  }
}
