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

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
}

/* Header Section */
.hero {
background: url('cccff3bc-0130-4bf8-b54b-588bae62b0b0.jpeg') no-repeat center center/cover;  height: 100vh;
  position: relative;
  color: rgb(131, 30, 30);
}

nav {
  padding: 20px 40px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: rgb(110, 40, 40);
  font-weight: 500;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid rgb(99, 39, 39);
  color: rgb(124, 34, 34);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: #000;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 60px 30px;
  background-color: #fff;
  text-align: center;
}

.feature {
  max-width: 300px;
  margin: 20px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* About Section */
.about {
  padding: 80px 40px;
  background-color: #f0f0f0;
  text-align: center;
}

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

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #666;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: white;
}
