* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  color: #222;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 1200px;
  max-width: 90%;
  margin: auto;
}

.header {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  height: 36px;
}

.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 10%;
  top: 30%;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 12px;
}

.primary {
  background: #3b5d50;
  color: #fff;
}

.secondary {
  border: 1px solid #3b5d50;
  color: #3b5d50;
}

.outline {
  border: 1px solid #fff;
  color: #fff;
}

/* TRUST */
.trust {
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.trust-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.trust-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 14px;
  color: #666;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.light {
  background: #f8f8f8;
}

.dark {
  background: #222;
  color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subtitle {
  color: #777;
  margin: 12px 0 24px;
}

.center {
  text-align: center;
}

.img-box {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* AWARDS */
.awards-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.award-card {
  background: #fff;
  padding: 24px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
}

.footer a {
  color: #aaa;
  text-decoration: none;
}
