body {
  color: #1a1a1a;
  line-height: 1.6;
  background-color: #000;
}

h1{
  font-weight: bold;
  color: #000;
}
h2, h3 {
  font-weight: bold;
  color: #fff;
}

p {
  font-size: 1rem;
  color: #555555;
}

a {
  text-decoration: none;
}

.about-hero {
  position: relative;
  height: 100vh;
  background: url('../Images/luxury-office.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.about-hero-content h1 span {
  color: gold;
}

.about-hero-content p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: auto;
  color: white;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1rem;
}

.about-values .pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-values .pillar {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border-left: 4px solid gold;
}

.about-closing blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: black;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 50px rgba(255, 255, 255, 0.2);
}

.btn:hover {
  background: gold;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .about-values .pillars {
    flex-direction: column;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }
}
