
/* ABOUT SECTION FIX */
.about-us img {
  max-width: 100%;
  height: auto;
}

/* Fix About Us text block */
.about-description {
  color: #fff;
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
}

/* OWNER SECTION */
.owner-section {
  background: url('assets/astrology-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px 15px;
}

.owner-box {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.owner-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  border: 4px solid gold;
  box-shadow: 0 0 15px gold;
}

.owner-content h1 {
  color: #ffd700;
  font-size: 30px;
}

.owner-content p {
  color: #f8fcf7;
  font-size: 18px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .about-us h4 {
    text-align: center;
    font-size: 22px;
  }

  .about-description {
    font-size: 16px;
  }

  .owner-box {
    flex-direction: column;
    text-align: center;
  }

  .owner-content h1 {
    font-size: 22px;
  }

  .owner-content p {
    font-size: 16px;
  }
}

/* ABOUT SECTION BASE */
.about-section {
  background: #b11226; /* RED background */
  padding: 60px 0;
}

/* IMAGE */
.about-image img {
  max-width: 100%;
  height: auto;
}

/* CONTENT */
.about-content h4 {
  color: #fff;
  margin-bottom: 20px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-bottom: 20px;
    text-align: center;
  }

  .about-image img {
    max-width: 260px;
  }

  .about-content {
    padding: 0 15px;
  }

  .about-section {
    padding: 40px 0;
  }
}

