/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('premium_photo-1681989486976-9ec9d2eac57a.jpeg') no-repeat center center/cover;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  z-index: 0;
}

/* Content Wrapper (to keep text above overlay) */
header,
.hero,
.about {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* Hero Section */
.hero {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* About Section */
.about {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    background-color: #00a859;
    padding: 20px;
    border-radius: 20px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.about p {
  font-size: 1rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p,
  .about p {
    font-size: 1rem;
  }

  .about h2 {
    font-size: 1.5rem;
  }
}
