

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @font-face {
    font-family: 'SS Big Bang';
    src: url('ss-big-bang.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #f5e8d7;
    overflow-x: hidden;
  }
  
  .hero-section {
    position: relative;
    padding: 20px;
    /* min-height: 100vh; */
    background-color: #f5e8d7;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: relative;
    z-index: 10;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #6a0d26;
    font-weight: bold;
  }
  
  /* Menu */
  .nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-menu li a {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: #9d9784;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .nav-menu li a.active {
    background: #b3b3b3; /* highlight Home */
  }
  
  .nav-menu li a:hover {
    opacity: 0.8;
  }
  
  /* Join Button */
  .join-btn {
    background-color: #6A0D26;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 5;
    font-size: 16px;
  }
  
  /* Hamburger (hidden on desktop) */
  .nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      flex-wrap: wrap;
      align-items: center;
    }
  
    .nav-toggle {
      display: block;
      color: #6a0d26;
      margin-left: auto;
    }
  
    .nav-menu {
      flex-direction: column;
      width: 100%;
      display: none; /* hidden by default */
      margin-top: 10px;
    }
  
    .nav-menu.active {
      display: flex; /* show when toggled */
    }
  
    .nav-menu li a {
      width: 100%;
      text-align: center;
    }
  
    .join-btn {
      width: 100%;
      margin-top: 10px;
      text-align: center;
    }
  }
  
  
  
  .hero-content {
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-family: 'SS Big Bang', sans-serif;
    font-size: 2.5rem;
    color: #1e1e1e;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    color: #3b3b3b;
    margin-bottom: 30px;
  }
  
  .explore-btn {
    background-color: #6a0d26;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  .stars {
    position: absolute;
    color: #6a0d26;
    font-size: 20px;
    font-family: monospace;
    z-index: 0;
    opacity: 0.7;
  }
  
  .star1 { top: 100px; left: 25%; }
  .star2 { top: 180px; right: 20%; }
  .star3 { bottom: 60px; left: 10%; }
  
  .circle-outline {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid #6a0d26;
    border-right: 4px double #6a0d26;
    border-top: 2px dotted #6a0d26;
    opacity: 0.2;
    z-index: 0;
    transform: translate(40%, -40%);
  }

  .image-row-section {
    text-align: center;
    position: relative;
    padding: 0px 20px 40px 20px;
  }
  
  .image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
    z-index: 1;
    align-items: end;
  }
  
  .image-row img {
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .image-row img:hover {
    transform: scale(1.05);
  }
  
  /* Specific Sizes for Each Image Position - Desktop Default */
  
  .image-row img:nth-child(1),
  .image-row img:nth-child(5) {
    width: 220px;
    height: 320px;
  }
  
  .image-row img:nth-child(2),
  .image-row img:nth-child(4) {
    width: 180px;
    height: 260px;
  }
  
  .image-row img:nth-child(3) {
    width: 140px;
    height: 200px;
  }
  
  .star {
    color: #6a0d26;
    font-size: 24px;
    position: absolute;
    z-index: 0;
  }
  
  .top-star {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .bottom-star {
    bottom: 0;
    right: 8%;
  }
  

  /* Commission Section (Two Column Layout) */
  .commission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 5%;
    background-color: #f5e8d7;
    flex-wrap: wrap;
  }
  
  .commission-text {
    flex: 1;
    max-width: 600px;
  }
  
  .commission-text h1 {
    font-family: 'SS Big Bang', sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    color: #1e1e1e;
    line-height: 1.3;
    white-space: normal; /* ✅ allows wrapping on mobile */
  }
  
  .commission-text h1 span {
    color: #6a0d26;
  }
  
  .commission-text p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
  }
  
  .commission-image {
    flex: 1;
    text-align: center;
  }
  
  .commission-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }
  
  /* Tablet & Mobile */
  @media (max-width: 992px) {
    .commission-text h1 {
      font-size: 2.2rem;
    }
  
    .commission-text p {
      font-size: 1rem;
    }
  
    .commission-image img {
      max-width: 320px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .commission-section {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  
    .commission-text {
      max-width: 100%;
    }
  
    .commission-text h1 {
      font-size: 2rem;
    }
  
    .commission-image img {
      max-width: 280px;
      margin-top: 15px;
    }
  }
  
  /* Extra Small Mobile */
  @media (max-width: 480px) {
    .commission-text h1 {
      font-size: 1.6rem;
    }
  
    .commission-text p {
      font-size: 0.95rem;
    }
  
    .commission-image img {
      max-width: 240px;
    }
  }
  

  .abt-section {
    background-color: #4d0b17;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .abt-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  
  .abt-image-box {
    position: relative;
    flex: 1 1 200px;
  }
  
  .abt-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    display: block;
  }
  
  .abt-star {
    position: absolute;
    top: -55px;
    left: -27px;
    font-size: 65px;
    color: #f5e8d7;
    opacity: 0.6;
  }
  
  .abt-text-box {
    flex: 1 1 300px;
    color: #f5e8d7;
  }
  
  .abt-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .abt-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px;
  }
  
  .abt-button {
    padding: 10px 20px;
    border: none;
    background-color: #f5e8d7;
    color: #4d0b17;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .abt-button:hover {
    background-color: #e8d2c3;
  }
  
  .abt-circle-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid #f5e8d7;
    border-right: 4px double #f5e8d7;
    opacity: 0.2;
  }

  .ptr-section {
    background: linear-gradient(to bottom, #fdf7f2, #f9f2e7);
    padding: 60px 20px;
    position: relative;
    /* overflow: hidden; */
  }
  
  .ptr-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  
  .ptr-image-wrapper {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
  }
  
  .ptr-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  /* Right: Content */
  .ptr-content {
    flex: 1 1 500px;
    color: #1a1a1a;
    max-width: 600px;
  }
  
  .ptr-subtitle {
    color: #a3233c;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  .ptr-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  .ptr-point {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
  }
  
  .ptr-icon {
    color: #e63946;
    font-size: 20px;
    line-height: 1.2;
    margin-top: 4px;
  }
  
  .ptr-point-title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
  }
  
  .ptr-point-desc {
    margin: 4px 0 0;
    font-size: 14px;
    color: #5a5a5a;
  }
  
  /* Decorative Circle */
  .ptr-circle-deco {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid #a3233c;
    border-right: 4px double #a3233c;
    opacity: 0.1;
    z-index: 0;
  }


  .fea-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  .fea-header {
    text-align: left;
    margin-bottom: 40px;
  }
  
  .fea-subtitle {
    font-size: 20px;
    text-transform: uppercase;
    color: #a53c3c;
    letter-spacing: 1px;
    font-weight: bold;
  }
  
  .fea-title {
    font-size: 26px;
    margin: 10px 0;
    font-weight: 600;
  }
  
  .fea-description {
    font-size: 16px;
    color: #5a5a5a;
    max-width: 700px;
    line-height: 1.6;
  }
  
  /* Grid */
  .fea-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin: 40px 0;
  }
  
  /* Card */
  .fea-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
  }
  
  .fea-card-hover:hover {
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
  }
  
  .fea-card p{
    font-size: 20px;
  }
  .fea-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(234, 222, 196, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden; /* keep images contained */
  }
  
  .fea-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }
  
  /* Help Box */
  .fea-help-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 80px;
  }
  
  .fea-help-text {
    flex: 2;
    min-width: 250px;
  }
  
  .fea-help-text h3 {
    margin: 0 0 10px;
  }
  
  .fea-help-contact {
    display: flex;
    flex: 1;
    min-width: 220px;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .fea-help-column h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .fea-help-column p {
    margin: 2px 0;
    font-size: 14px;
    color: #444;
  }

  .dow-section {
    background-color: #500917;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .dow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  /* Left Side */
  .dow-image-wrapper {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
  }
  
  .dow-image {
    max-width: 505px;
    width: 100%;
    transform: rotate(-10deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  }
  
  /* Right Side */
  .dow-content {
    flex: 1 1 400px;
    max-width: 520px;
  }
  
  .dow-title {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #5a5a5a;
  }
  
  .dow-description {
    font-size: 15px;
    line-height: 1.6;
    color: #f3e8e8;
    margin-bottom: 24px;
  }
  
  .dow-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .dow-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
  }
  
  .dow-btn:hover {
    background-color: #f3f3f3;
  }
  
  /* Decorative Elements */
  .dow-circle-deco {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: 3px double rgba(255, 255, 255, 0.2);
  }
  
  .dow-star {
    position: absolute;
    color: #fff;
    font-size: 24px;
    left: 60%;
    top: 70%;
    opacity: 0.4;
  }
  
  .dow-star.small {
    left: 50%;
    top: 60%;
    font-size: 16px;
    opacity: 0.3;
  }

  .footer {
    background: #000;
    color: white;
    padding: 30px 50px;
    /* margin-top: -50px; */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Left Section - Logo & Social Icons */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s;
}
.social-icons a i {
    font-size: 25px; /* Ensures the icon is visible */
}

.social-icons a:hover {
    background-color: #555;
}

/* Right Section - Contact Info */
.footer-right {
    text-align: left;
}

.footer-right h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-right a {
    color: white;
    text-decoration: none;
}

/* Bottom Section - Copyright & Links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}


  .why-section {
    background: #f8f1e5;
    padding: 40px 20px;
    font-family: 'Outfit', sans-serif;
  }
  
  .why-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .why-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .why-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .why-subtitle {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
  }
  
  .why-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 40px 0;
  }
  
  .why-card {
    /* flex: 1 1 280px; */
    padding: 30px 20px;
    border-radius: 12px;
    color: #000;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    width: 350px;
  }
  
  .why-card img.why-icon {
    height: 80px;
    margin-bottom: 15px;
  }
  
  .why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .why-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
  }
  
  /* Color Variants */
  .why-card.maroon {
    background-color: #500917;
    color: #fff;
  }

  .why-card.maroon p {
    color: #fff;
  }
  
  .why-card.black {
    background-color: #000;
    color: #fff;
  }

  .why-card.black p {

    color: #fff;
  }
  /* Steps Section */
.why-steps-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.why-steps-left {
  flex: 1 1 300px;
}

.why-steps-left h5 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a86a3d;
  margin-bottom: 10px;
}

.why-steps-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.why-steps-left p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Images stacked below text */
.why-steps-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-steps-images img {
  width: 80%;
  border-radius: 8px;
}

.why-steps-right {
  flex: 1 1 350px;
}

.why-steps-right ul {
  list-style: none;
  padding: 0;
}

.why-steps-right li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.why-step-icon {
  color: #c3293a;
  font-size: 24px;
  line-height: 1;
}

.why-steps-right strong {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.why-steps-right p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

  
  .dw-oval-mb {
    position: absolute;
    border: 1px solid #49030E;
    border-radius: 50%;
    transform: rotate(129deg);
}

.dw-oval-10{
    width: 200px;
    height: 325px;
    right: -26px;
}

.dw-oval-11{
    width: 200px;
    height: 325px;
    right: -3px;
}
.dw-oval-12{
    width: 200px;
    height: 342px;
    right: 17px;
}

.star {
    width: 10px;
    height: 10px;
    background-color: #4a2f26;
    position: absolute;
    background: transparent;
}
.star1 {
    top: 13%;
    right: 47%;
    width: 29px;
    height: 30px;
}
.star2 {
    top: 21%;
    right: 27%;
    width: 41px;
    height: 37px;
}

.star3 {
    top: 49%;
    right: -1%;
    width: 37px;
    height: 33px;
}
.star4 {
    bottom: 40%;
    left: 53%;
    width: 32px;
    height: 30px;
}
.star5 {
    top: 3%;
    left: 8%;
    width: 32px;
    height: 30px;
}
.star6 {
    bottom: 23%;
    left: 27%;
    width: 30px;
    height: 30px;
}
.star7 {
    top: 20%;
    right: 5%;
    width: 23px;
    height: 30px;
}
.star8 {
    top: 45%;
    right: 18%;
    width: 41px;
    height: 37px;
}
  

.dw-oval {
    position: absolute;
    border: 2px solid rgba(234, 222, 196, 1);
    border-radius: 50%;
    transform: rotate(129deg);
}

.dw-oval-1 {
    width: 201px;
    height: 360px;
    top: -193px;
    right: -1%;
}

.dw-oval-2 {
    width: 210px;
    height: 360px;
    top: -178px;
    right: 0;
}

.dw-oval-3 {
    width: 220px;
    height: 360px;
    bottom: 312px;
    right: 1%;
}

.dw-oval-6 {
    width: 201px;
    height: 360px;
    top: 251px;
    left: -6%;
}

.dw-oval-7 {
    width: 210px;
    height: 360px;
    top: 258px;
    left: -43px;
}

.dw-oval-8 {
    width: 220px;
    height: 360px;
    top: 251px;
    left: -2%;
}

  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .circle-outline {
      width: 200px;
      height: 200px;
      transform: translate(20%, -30%);
    }
  
    .nav {
      padding: 10px 20px;
    }
  
    .stars {
      font-size: 16px;
    }

    .image-row img {
        width: 140px;
        height: 200px;
      }

      .abt-container {
        flex-direction: column;
        text-align: center;
      }
    
      .abt-text-box {
        padding-top: 20px;
      }
    
      .abt-title {
        font-size: 24px;
      }
    
      .abt-description {
        font-size: 15px;
      }
    
      .abt-circle-deco {
        width: 160px;
        height: 160px;
        bottom: -40px;
        right: -40px;
      }

      .ptr-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
      .ptr-point {
        flex-direction: column;
        align-items: center;
      }
    
      .ptr-content {
        padding-top: 30px;
      }
    
      .ptr-circle-deco {
        display: none;
      }

      .fea-help-box {
        flex-direction: column;
        text-align: center;
      }
    
      .fea-help-contact {
        justify-content: center;
      }
    
      .fea-help-column {
        text-align: center;
      }

      .dow-container {
        flex-direction: column;
        text-align: center;
      }
    
      .dow-content {
        margin-top: 40px;
      }
    
      .dow-buttons {
        justify-content: center;
      }
    
      .dow-image {
        transform: rotate(0);
      }
    
      .dow-circle-deco,
      .dow-star {
        display: none;
      }

      .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }

  .why-cards {
    flex-direction: column;
    align-items: center;
  
  }
  .why-card{
    width: 300px;
  }

  .why-steps-wrapper {
    flex-direction: column;
  }

  .why-steps-left{
    text-align: center;
  }

  .why-steps-right {
    margin-top: 20px;
  }

  .fea-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dw-oval-mb{
    display: none;
  }

  .dw-oval{
    display: none;
  }

  .image-row {
    gap: 20px;
  }

  .image-row img:nth-child(1),
  .image-row img:nth-child(5) {
    width: 180px;
    height: 260px;
  }

  .image-row img:nth-child(2),
  .image-row img:nth-child(4) {
    width: 140px;
    height: 200px;
  }

  .image-row img:nth-child(3) {
    width: 120px;
    height: 160px;
  }

  .footer-right {
    flex: 1 1 80px;

  }
  .footer-left {
    flex: 1 1 60px;
  }

  .ptr-image-wrapper {
    flex: 1 1 200px;
  }
  .ptr-container{
    gap: 0px;
  }


  }
  

  @media (max-width: 480px) {
    .image-row img {
      width: 100px;
      height: 160px;
    }
  }
  .myc-section {
    background: rgba(73, 3, 14, 1) ;/* background similar to your reference */
    padding: 50px 20px;
  }
  
  .myc-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* LEFT SIDE */
  .myc-left {
    flex: 1;
    text-align: center;
  }
  
  .myc-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
  }
  
  .myc-subtitle {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
  }
  
  .myc-image {
    max-width: 400px;
    margin-top: 160px;
  }
  
  /* RIGHT SIDE */
  .myc-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .myc-box {
    background: rgba(73, 3, 14, 1); /* dark maroon background */
    color: white;
    padding: 20px;
    border-radius: 12px;
    border: rgba(172, 127, 94, 1) solid 1px;
  }
  
  .myc-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .myc-container {
      flex-direction: column;
      text-align: center;
    }
    .myc-right {
      width: 100%;
    }
  }
  
  
  .pc-section {
    background: #f1e1c8; /* light beige */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #222;
    overflow: hidden;
  }
  
  /* Section Heading */
  .pc-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
  }
  
  /* TIMELINE */
  .pc-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* The center line */
  .pc-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ccc;
    transform: translateX(-50%);
  }
  
  /* Each step row */
  .pc-step {
    position: relative;
    width: 100%;
    display: flex;
    margin: 40px 0;
  }
  
  /* Circle always on center line */
  .pc-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .pc-active {
    border-color: #0056ff;
    color: #0056ff;
  }
  
  .pc-icon {
    font-size: 22px;
    line-height: 42px;
  }
  
  /* Content positioning */
  .pc-content {
    max-width: 350px;
  }
  
  .pc-step.pc-left .pc-content {
    margin-right: auto;
    text-align: right;
   /* push away from line */
  }
  
  .pc-step.pc-right .pc-content {
    margin-left: auto;
    text-align: left;
     /* push away from line */
  }
  
  .pc-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .pc-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }
  
  /* PAYMENT SECTION */
  .pc-payment {
    margin-top: 80px;
  }
  
  .pc-desc {
    font-size: 15px;
    color: #333;
    margin-bottom: 30px;
    max-width: 650px;
  }
  
  .pc-icons {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .pc-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .pc-icon-img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .pc-st{
    display: flex;
    gap: 100px;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .pc-timeline::before {
      left: 20px;
    }
  
    .pc-step,
    .pc-step.pc-left,
    .pc-step.pc-right {
      width: 100%;
      justify-content: flex-start;
      text-align: left;
      padding-left: 60px;
    }
  
    .pc-circle {
      left: 20px;
      transform: none;
    }
  
    .pc-icons {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  
    .pc-icon-box {
      align-items: flex-start;
      text-align: left;
    }
  }
  

  .qa-section {
    background: #f1e1c8; /* beige like your site */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #222;
  }
  
  .qa-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .qa-questions {
    flex: 1;
  }
  
  .qa-questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
  }
  
  .qa-question {
    padding: 10px 0;
    cursor: pointer;
    font-size: 20px;
    color: #333;
  }
  
  .qa-question:hover {
    color: #0056ff;
  }
  
  .qa-active {
    font-weight: bold;
    color: #0056ff;
  }
  
  .qa-answers {
    flex: 2;
  }
  
  .qa-answer {
    display: none;
  }
  
  .qa-show {
    display: block;
  }
  
  .qa-answer h3 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: bold;
  }
  
  .qa-answer p {
    font-size: 20px;
    color: #444;
    margin-top: 20px;

  }
  .qa-heading{
    font-size: 28px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .qa-container {
      flex-direction: column;
    }
  
    .qa-questions {
      margin-bottom: 20px;
    }

    .myc-image {
      max-width: 310px;
      margin-top: 0px;
  } 
  }
  
  @media (max-width: 992px) {
    .pc-st {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pc-timeline::before {
        left: 20px;
    }

    .pc-step,
    .pc-step.pc-left,
    .pc-step.pc-right {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding-left: 60px;
        margin: 30px 0;
    }

    .pc-circle {
        left: 20px;
        transform: none;
    }

    .pc-step.pc-left .pc-content,
    .pc-step.pc-right .pc-content {
        margin: 0 0 0 60px;
        text-align: left;
        max-width: calc(100% - 80px);
    }

    .pc-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pc-icon-box {
        align-items: flex-start;
        text-align: left;
    }

    .pc-content h3 {
        font-size: 16px;
    }

    .pc-content p {
        font-size: 13px;
    }

    .pc-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .pc-circle {
        width: 35px;
        height: 35px;
        line-height: 32px;
        font-size: 14px;
    }

    .pc-content h3 {
        font-size: 15px;
    }

    .pc-content p {
        font-size: 12px;
    }

    .pc-st {
        gap: 20px;
    }

    .pc-icon-img {
        width: 80px;
    }

    .pc-heading {
        font-size: 20px;
    }

    .pc-ss{
      margin-left: 0px !important;
    }
    .dow-container{
      gap: 0px;
    }
}