/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  min-height: 80vh; /* nearly full screen height */
}

.hero-text {
  flex: 1;
  margin-right: 40px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #CCCCCC; /* a lighter gray to differentiate */
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  max-width: 500px;
  color: #BBBBBB;
}

.hero-button {
  display: inline-block;
  background-color: #FF8C00;
  color: #0D0D0D;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #FFA733;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 300px;
  border-radius: 50%; /* circular image style */
}

/* About Section */
.about-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #111111; /* slightly different shade */
}

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

.about-section p {
  max-width: 600px;
  margin: 0 auto;
  color: #BBBBBB;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
