/* Base & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #f8f8f8;
  padding: 20px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.main-nav {
  display: inline-block;
  margin-left: 40px;
}
.main-nav a {
  margin-right: 20px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}
.main-nav a:hover {
  color: #007acc;
}

/* Hero */
.hero {
  background: url('https://via.placeholder.com/1600x600') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero .btn {
  background: #007acc;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
}
.hero .btn:hover {
  background: #005fa3;
}

/* Listings */
.listings {
  padding: 60px 0;
}
.listings h2 {
  text-align: center;
  margin-bottom: 40px;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.listing-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}
.listing-item img {
  max-width: 100%;
  border-radius: 5px;
}
.listing-item h3 {
  margin: 15px 0 10px;
}
.listing-item p {
  margin-bottom: 10px;
}
.price {
  font-size: 1.2rem;
  color: #007acc;
}

/* Services */
.services {
  background: #fafafa;
  padding: 60px 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.services-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 30%;
  text-align: center;
}

/* Team */
.team {
  padding: 60px 0;
}
.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.team-member {
  text-align: center;
}
.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

/* Testimonials */
.testimonials {
  background: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 20px;
}
.testimonial-item {
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* Contact */
.contact {
  padding: 60px 0;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form .btn {
  background: #007acc;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form .btn:hover {
  background: #005fa3;
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
