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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiL7Dkqdbhxz-rUroiNMt-T_ES884KhFeM7KBCJytYWvJUIjnagcw0FdZMyEzdjHL_DmnqqSTPTwFkmiuG-lz19f60rH0BDdb5TpWvEAXzKi7tB1Dhp3AOsITni8Ttz1htpzBFWPzAx6JYpu9EamIrRPlTtmOjaZUvhhZXArQId5oFXmG1YaC4wO1oYQUKZ/s16000/sdfsdf.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e68900;
}

/* About Section */
.about {
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1em;
  max-width: 700px;
  margin: auto;
}

/* Footer */
footer {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  background: #f4f4f4;
}
