* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #2c003e;
    }

    .section {
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between;
      align-items: center;
      padding: 60px 30px;
      background: #fff;
      flex-wrap: wrap;
      max-width: 1200px;
      /* background: red; */
      margin:auto;
    }

    .image-wrapper {
      position: relative;
      width: 320px;
      width: 400px;
      height: 400px;
      margin-bottom: 30px;
      flex-shrink: 0;
    }

    .bg-card {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 100%;
      height: 100%;
      background-color: #e4f0fc;
      /* background-image: url("https://d2wkagtnczagqh.cloudfront.net/astrology-blog/wp-content/uploads/2023/09/05153144/astrology-astronomy-earth-moon-space-saturn-planet-solar-system-creation_872147-3051_11zon.jpg"); */
      border-radius: 20px;
      transform: rotate(-4deg);
      z-index: 0;
    }

    .mandala-bg {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 400px;
      height: 400px;
      background: url('https://png.pngtree.com/png-vector/20220606/ourmid/pngtree-indian-mandala-ornament-png-image_4832232.png') no-repeat center;
      background-size: contain;
      opacity: 0.1;
      z-index: -1;
    }

    .main-image {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      animation: fadeInUp 1s ease-in-out;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      object-position: center;
    }

    .main-image:hover img {
      transform: scale(1.03);
    }

    .content {
      max-width: 600px;
      /* margin-left: 40px; */
      animation: fadeInRight 1s ease;
    }

    .content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: #400047;
    }

    .content p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 25px;
      color: #555;
    }

    .chat-button {
  /* background-color: #e9368e; */
  background-color: #ff5f00;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  /* gap: 8px; */
}

    .chat-button:hover {
      background-color: #ff6b00;
      transform: scale(1.05);
    }

    /* about-page-section start */

    .about-page-section{
        background-color: white;
    } 

    .about-page-container{
      display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 60px 30px;
    gap:50px;
    }

    .about-image-box{
      /* background:red; */
      width: 45%;
    }

    .about-image-box .about-page-img{
      width: 100%;
    }

    .about-page-content{
      width: 50%;
      padding: 0 2%;
    }

    .about-page-heading{
      font-size:3.5rem;
      margin-bottom: 2rem;
      /* color:#ff5f00; */
      /* font-weight: 800; */
    }
    .about-page-para{
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      line-height:1.6rem;
      color:black;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
      }

      .content {
        margin-left: 0;
        text-align: center;
        padding-top: 30px;
      }

      .content h1 {
        font-size: 1.8rem;
      }

      .image-wrapper {
        width: 280px;
        height: 350px;
      }

      .mandala-bg {
        width: 300px;
        height: 300px;
        top: -30px;
        left: -30px;
      }

      .about-page-container{
        flex-direction:column;
        align-items: center;
        padding: 30px 30px;

      }

      .about-image-box{
        width: 100%;
      }

      .about-page-content{
        width: 100%;
        text-align: center;
      }

      .about-page-heading{
        text-align:center;
      }

      .about-page-para{
        text-align:justify;
      }
    }


    /* faqs and contact form css  */

    .faq-contact-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      gap: 30px;
      padding: 20px;
    }

    .about-faq-section {
      flex: 1 1 450px;
      /* background: linear-gradient(to right, #ff512f, #ff5f00); */
      background: linear-gradient(to right, #e6182b, #ff7200);;
      border-radius: 16px;
      color: white;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .about-faq-section h3 {
      margin: 0;
      font-size: 16px;
      opacity: 0.85;
    }

    .about-faq-section h2 {
      margin: 5px 0 20px;
      font-size: 28px;
      font-weight: bold;
    }

    .about-faq-item {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding: 15px 0;
      cursor: pointer;
    }

    .about-faq-item:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .about-faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .about-faq-question p {
      margin: 0;
      /* font-size: 1.2rem; */
      font-weight: 500;
    }

    .about-faq-question span {
      font-size: 20px;
      transition: transform 0.3s;
    }

    .about-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      opacity: 0;
      /* font-size: 1rem; */
    }

    .about-faq-item.active .about-faq-answer {
      max-height: 300px;
      opacity: 1;
      margin-top: 10px;
    }

    .about-faq-item.active .about-faq-question span {
      transform: rotate(180deg);
    }

    .about-contact-form {
      flex: 1 1 450px;
      background: #f9f9f9;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .about-contact-form h3 {
      color: #999;
      font-size: 15px;
      margin-bottom: 5px;
    }

    .about-contact-form h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 25px;
    }

    .about-contact-form input,
    .about-contact-form textarea {
      width: 100%;
      padding: 12px 16px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 15px;
    }

    .about-contact-form textarea {
      resize: vertical;
      height: 100px;
    }

    .about-contact-form button {
      width: 100%;
      padding: 12px;
      background: linear-gradient(to right, #ff512f, #ff5f00);
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .about-contact-form button:hover {
      background: linear-gradient(to right, #e64a19, #c2185b);
    }

    @media (max-width: 900px) {
      .faq-contact-container {
        flex-direction: column;
        gap: 20px;
      }

      .about-faq-section,
      .about-contact-form {
        flex: 1 1 100%;
      }
    }