html {
  box-sizing: border-box;
  font-size: 18px;
  background: #f9f9f6;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: #232323;
  background: #f9f9f6;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.site-header {
  background: #fffbe7;
  border-bottom: 1px solid #f3d34a33;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
.brand-logo {
  display: inline-block;
  margin-right: 0.75rem;
}
.brand-name {
  color: #f45d48;
}
.site-nav {
  display: flex;
  gap: 1.4rem;
}
.site-nav a {
  text-decoration: none;
  color: #232323;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  transition: background 0.13s;
}
.site-nav a:hover, .site-nav a:focus {
  background: #f3d34a33;
  outline: none;
}

.hero {
  background: linear-gradient(90deg, #f3d34a 0 50%, #f9f9f6 100%);
  padding: 3.5rem 0 2.5rem 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.hero-text {
  flex: 1 1 0%;
  max-width: 420px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #232323;
  font-weight: 700;
}
.hero-desc {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.6rem;
}
.cta-btn {
  display: inline-block;
  background: #f45d48;
  color: #fff;
  padding: 0.8em 1.7em;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 #f45d4822;
  transition: background 0.15s, color 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #d63f2c;
  color: #fffbe7;
  outline: none;
}
.hero-visual {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section {
  background: #fff;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid #eee;
}
.about-section h2 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
  color: #f45d48;
}
.about-section p {
  font-size: 1.08rem;
  color: #444;
}

.highlights-section {
  background: #f9f9f6;
  padding: 2.5rem 0 2rem;
}
.highlights-section h2 {
  color: #a7c957;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.highlights-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.highlights-list li {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px 0 #f3d34a22;
  padding: 1.1rem 1rem 1.1rem 0.9rem;
  display: flex;
  align-items: center;
  font-size: 1.04rem;
  color: #232323;
}
.highlight-icon {
  margin-right: 0.7em;
  flex-shrink: 0;
}

.contact-section {
  background: #fffbe7;
  padding: 2.4rem 0 2rem;
}
.contact-section h2 {
  color: #f3d34a;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.contact-details {
  font-size: 1.07rem;
  color: #232323;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-details a {
  color: #f45d48;
  text-decoration: underline;
  word-break: break-all;
}
.contact-details a:hover, .contact-details a:focus {
  color: #a7c957;
}

.site-footer {
  background: #232323;
  color: #fffbe7;
  padding: 1.1rem 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
}
.footer-industry {
  color: #f3d34a;
  font-weight: 500;
}

.preview-banner {
  background: #f45d48;
  color: #fff;
  text-align: center;
  padding: 0.45em 0.7em;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .hero-visual {
    margin-left: 0;
    align-self: center;
  }
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero {
    padding: 2rem 0 1.2rem 0;
  }
  .about-section, .highlights-section, .contact-section {
    padding: 1.3rem 0 1rem;
  }
  .highlights-list {
    grid-template-columns: 1fr;
  }
}
