/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: #ffffff;
  color: #555;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
}

/* Header */
.site-header {
  padding: 22px 18px 10px;
}

.brand {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* centered banner */
}

.brand__banner{
  width: 100%;
  max-width: 980px;   /* adjust if you want it larger/smaller */
  height: auto;
  display: block;
}

/* If you don't have the logo yet, you can temporarily show a placeholder:
   Put a small SVG or PNG at assets/logo.png
*/
.brand__text {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand__the {
  font-size: 18px;
  color: #7a7a7a;
  letter-spacing: 0.2px;
}

.brand__name {
  font-size: 48px;
  font-weight: 300;
  color: #6c6c6c;
  letter-spacing: 0.2px;
}

/* Main content */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 18px 70px;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px; /* wide gap similar to screenshot */
}

/* Typography */
h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 500;
  color: #5a5a5a;
}

p {
  margin: 0 0 18px;
  font-size: 18px;
  color: #666;
}

.mt { margin-top: 34px; }

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  column-gap: 14px;
  padding: 12px 0;
}

.icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #9cc84a; /* green */
  position: relative;
  margin-top: 4px; /* aligns with text baseline like screenshot */
  flex: none;
}

/* inner dot */
.icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  position: absolute;
  left: 6px;
  top: 6px;
}

.contact-text {
  font-size: 18px;
  color: #6a6a6a;
}

.contact-text a {
  color: #6a6a6a;
  text-decoration: none;
}
.contact-text a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #2f3232; /* dark grey bar */
  padding: 22px 18px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  color: #cfcfcf;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .brand__name { font-size: 36px; }
  .columns { grid-template-columns: 1fr; gap: 34px; }
}