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

body {
  background: #ffffff;
  color: #1f2933;
  line-height: 1.6;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: linear-gradient(120deg, #f8fafc, #eef2f7);
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 1.4rem;
  margin: 10px 0;
  color: #b08a3c;
}

.hero p {
  margin: 20px 0;
}

.buttons {
  margin-top: 25px;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  margin-right: 10px;
  border-radius: 30px;
  font-weight: 600;
}

.primary {
  background: #b08a3c;
  color: #fff;
}

.secondary {
  border: 2px solid #b08a3c;
  color: #b08a3c;
}

/* IMAGE */
.hero-image {
  text-align: center;
}

.hero-image img {
  width: 280px;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.caption {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 70px 10%;
}

.section.light {
  background: #f9fafb;
}

.section.dark {
  background: #1f2933;
  color: #ffffff;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
}

.grid li {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section.dark .grid li {
  background: #2d3748;
}

/* SOCIAL */
.social a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111827;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    margin-top: 40px;
  }
}
