* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

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

/* HERO */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

.hero-logo {
  width: 80px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.hero h1 span {
  font-weight: 400;
}

.hero-text {
  font-size: 17px;
  color: #444;
}

/* TWO COLUMNS */
.two-columns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-columns.reverse {
  direction: rtl;
}

.two-columns.reverse .col {
  direction: ltr;
}

.col.image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eaeaea;
}

.col.text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.col.text p {
  margin-bottom: 20px;
  color: #333;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #999;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

/* SERVICES */
.services {
  background: #f1f1f1;
  padding: 100px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ccc;
  margin-bottom: 15px;
}

.service-item p {
  font-weight: 600;
}

/* TEAM */
.team {
  padding: 100px 20px;
  text-align: center;
}

.team-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ddd;
  margin-bottom: 10px;
}

/* REVIEWS */
.reviews {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.reviews blockquote {
  font-style: italic;
  color: #333;
}

.reviews span {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}

/* FOOTER */
.footer {
  padding: 80px 20px;
  background: #fafafa;
  text-align: center;
}

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

.footer-desc {
  margin: 20px 0;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-columns,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

