/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #2c3e50;
  color: white;
  padding: 20px 0;
}
.logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  float: right;
}
nav ul li {
  display: inline;
  margin-left: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: #2980b9;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #1abc9c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Services */
.services {
  background: #ecf0f1;
  padding: 60px 20px;
  text-align: center;
}
.service-box {
  margin: 20px 0;
}

/* About */
.about {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

/* Contact */
.contact {
  background: #f8f9fa;
  padding: 60px 20px;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
}
.contact button {
  padding: 10px;
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
