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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1529634806980-b1d0c2e1f54a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80") no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero .overlay {
  background-color: rgba(0,0,0,0.55);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #d4af37;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b8912e;
}

/* Main Sections */
main {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
}

.intro p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 0;
  text-align: center;
}

.services li {
  background: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.services li:hover {
  transform: translateY(-5px);
}

/* Call to Action */
.cta {
  text-align: center;
  background: #f5f0e6;
  padding: 2rem;
  border-radius: 10px;
}

.cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
