/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  background-color: #e46f2c; /* bright orange */
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
}

.brand-name {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.nav-links a {
  margin-left: 26px;
  text-decoration: none;
  font-weight: 700;
  color: #000;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* MAIN LAYOUT
   Fixes the “too much space on the right” feeling:
   - content gets a wider max width
   - still stays left-aligned (NOT centered) */
.main-content {
  padding: 34px 32px;
  max-width: 1200px;   /* wider so it fills the page better */
  margin: 0;           /* keep LEFT aligned */
}

/* HERO */
.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 820px;
  margin-bottom: 18px;
}

.hero-meta p {
  margin: 6px 0;
}

/* SECTIONS */
.section {
  margin-top: 48px;
}

.section h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
}

.section p {
  max-width: 900px; /* wider so it doesn’t look skinny */
}

/* SERVICES GRID (2x2) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 520px));
  gap: 18px 22px;
  margin-top: 18px;
  align-items: stretch;
}

.service-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 700;
  background: #fff;
}

/* CONTACT */
.contact-block p {
  margin: 8px 0;
  font-size: 18px;
}

.footer-logo {
  margin-top: 18px;
  max-width: 460px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .brand-name {
    font-size: 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .nav-links a {
    margin-left: 14px;
  }

  .main-content {
    padding: 28px 18px;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}