

:root{
  --primary:#5c0f58;
  --primary-dark:#3a0a37;
  --text-dark:#222;
  --text-light:#fff;
}
html{
  scroll-behavior:smooth;
}
#about,
#services,
#contact{
  scroll-margin-top:100px; 
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#fff;
  color:var(--text-dark);
}

/*  TOP BAR  */
.top-bar{
  background:#111;
  color:#fff;
  padding:10px 70px;
  display:flex;
  justify-content:space-between;
  font-size:13px;
}

/*  HEADER  */
header{
  background:#fff;
  padding:22px 70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
}

.logo img {
  height: 100px;     
  width: auto;       
  object-fit: contain; 
  display: block;
}



/* NAVBAR */
nav ul{
  list-style:none;
  display:flex;
  gap:45px;
}

nav ul li a{
  text-decoration:none;
  font-size:17px;           
  font-weight:600;
  color:#333;
  position:relative;
  transition:0.3s;
}

/* HOVER EFFECT */
nav ul li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--primary);
  transition:0.3s;
}

nav ul li a:hover{
  color:var(--primary);
}

nav ul li a:hover::after{
  width:100%;
}

/* HEADER BUTTON */
.header-btn{
  padding:13px 34px;
  background:var(--primary);
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.35s;
}

.header-btn:hover{
  background:var(--primary-dark);
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(92,15,88,0.35);
}

/*  RESPONSIVE HEADER */
@media(max-width:1024px){
  .top-bar, header{
    padding:15px 30px;
  }
}

@media(max-width:768px){
  .top-bar{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }

  header{
    flex-direction:column;
    gap:15px;
    padding:15px 30px;
    text-align:center;
  }

  nav ul{
    display:none; 
    flex-direction: column;
    gap:20px;
    background: #fff;
    position: absolute;
    top:100%;
    left:0;
    width:100%;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav ul.show{
    display:flex; 
  }

  .header-btn{
    width:100%;
    max-width:250px;
  }

  .menu-toggle{
    display:block;
    cursor:pointer;
    font-size:24px;
    color:var(--primary);
  }
}

@media(max-width:480px){
  nav ul li a{
    font-size:16px;
  }

  .header-btn{
    padding:12px 20px;
  }

  .top-bar{
    font-size:12px;
  }
}



/*  HERO SECTION  */
.hero{
  position:relative;
  height:92vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}


.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}


.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:2;
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  max-width:850px;
  text-align:center;
  color:#fff;
  padding:0 20px;
}

.hero-content span{
  display:inline-block;
  font-size:13px;
  letter-spacing:3px;
  color:#ddd;
  margin-bottom:18px;
  text-transform:uppercase;
}

.hero-content h1{
  font-size:56px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:24px;
}

.hero-content p{
  font-size:18px;
  line-height:1.75;
  margin-bottom:40px;
  color:#eee;
}

/* HERO BUTTON */
.hero-content a{
  display:inline-block;
  padding:16px 46px;
  background:var(--primary);
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.35s;
}

.hero-content a:hover{
  background:#fff;
  color:var(--primary);
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

/*  RESPONSIVE  */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size:48px;
  }
  .hero-content p {
    font-size:16px;
  }
  .hero-content a {
    padding:14px 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    height:80vh;
  }
  .hero-content h1 {
    font-size:40px;
  }
  .hero-content p {
    font-size:15px;
  }
  .hero-content a {
    padding:12px 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    height:70vh;
  }
  .hero-content h1 {
    font-size:28px;
  }
  .hero-content p {
    font-size:14px;
  }
  .hero-content a {
    padding:10px 28px;
    font-size:14px;
  }
  .hero-content span {
    font-size:11px;
    letter-spacing:2px;
  }
}

/* ABOUT SECTION  */
.about-section{
  padding:120px 70px;
  background:#f7f9fc;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* IMAGE GRID */
.about-images{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.about-images .img{
  width:100%;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.img1{ grid-column:1/2; }
.img2{ grid-column:2/3; }
.img3{ grid-column:1/2; }
.img4{ grid-column:2/3; }

/* CONTENT */
.about-content .about-tag{
  font-size:13px;
  letter-spacing:3px;
  color:var(--primary);
  font-weight:600;
  display:inline-block;
  margin-bottom:18px;
}

.about-content h2{
  font-size:44px;
  line-height:1.25;
  margin-bottom:20px;
}

.about-content h2 span{
  color:var(--primary);
}

.about-content .subtitle{
  font-size:18px;
  font-weight:600;
  color:#555;
  margin-bottom:22px;
}

.about-content p{
  font-size:16px;
  line-height:1.8;
  color:#444;
  margin-bottom:18px;
}

/* RESPONSIVE  */


@media (max-width: 1024px) {
  .about-section{
    padding:100px 50px;
  }
  .about-container{
    gap:50px;
  }
  .about-content h2{
    font-size:36px;
  }
  .about-content .subtitle{
    font-size:16px;
  }
  .about-content p{
    font-size:15px;
  }
}


@media (max-width: 768px) {
  .about-section{
    padding:80px 30px;
  }
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-images{
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
  .about-content h2{
    font-size:30px;
  }
  .about-content .subtitle{
    font-size:15px;
  }
  .about-content p{
    font-size:14px;
  }
}


@media (max-width: 480px) {
  .about-section{
    padding:60px 20px;
  }
  .about-images{
    grid-template-columns:1fr;
    gap:12px;
  }
  .about-content h2{
    font-size:24px;
  }
  .about-content .subtitle{
    font-size:14px;
  }
  .about-content p{
    font-size:13px;
  }
  .about-content .about-tag{
    font-size:12px;
    letter-spacing:2px;
  }
}

/*services section*/
.services-section {
  padding: 90px 0;
  background: #f8f8ff;
  font-family: "Poppins", sans-serif;
}

/* HEADING */
.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading span {
  font-size: 14px;
  color: #9b6dff;
  font-weight: 600;
  letter-spacing: 2px;
}

.services-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}

/* GRID */
.services-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* ICON */
.service-card .icon {
  font-size: 40px;
  color: #9b6dff; 
  margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 15px;
  color: #666;
}

/* BACKGROUND IMAGE */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hover-img) center/cover no-repeat;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

/* DARK LAYER */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

/* HOVER */
.service-card:hover::before,
.service-card:hover::after {
  opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .icon {
  color: #fff !important;
  position: relative;
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-8px);
}

/*  RESPONSIVE  */

@media (max-width: 1024px) {
  .services-heading h2 {
    font-size: 36px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-card .icon {
    font-size: 36px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-heading h2 {
    font-size: 32px;
  }
  .service-card .icon {
    font-size: 32px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .services-heading h2 {
    font-size: 28px;
  }
  .services-heading span {
    font-size: 12px;
  }
  .service-card {
    padding: 25px 15px;
  }
  .service-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .service-card h3 {
    font-size: 16px;
  }
  .service-card p {
    font-size: 12px;
  }
}


/*  INSURANCE CLAIMS */
.insurance-claims {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #fff;
  overflow: hidden;
}

/* Background Image  */
.insurance-claims img.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */
.insurance-claims .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

/* Content */
.insurance-claims .content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.breadcrumb {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffffcc;
  margin-bottom: 20px;
  display: inline-block;
}

.insurance-claims h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.insurance-claims p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f1f1;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: #5c0f58;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn span {
  width: 26px;
  height: 26px;
  background: #5c0f58;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-3px);
}

/*  RESPONSIVE  */

@media (max-width: 1024px) {
  .insurance-claims {
    padding: 0 50px;
  }
  .insurance-claims h1 {
    font-size: 44px;
  }
  .insurance-claims p {
    font-size: 16px;
  }
  .btn {
    padding: 12px 24px;
  }
  .btn span {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .insurance-claims {
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    text-align: center;
  }
  .insurance-claims .content {
    max-width: 100%;
  }
  .insurance-claims h1 {
    font-size: 36px;
  }
  .insurance-claims p {
    font-size: 15px;
  }
  .btn {
    padding: 10px 20px;
  }
  .btn span {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .insurance-claims {
    min-height: 70vh;
    padding: 0 20px;
  }
  .insurance-claims h1 {
    font-size: 28px;
  }
  .insurance-claims p {
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .btn span {
    width: 20px;
    height: 20px;
  }
}

/*  GET IN TOUCH SECTION  */
.get-touch{
  max-width:1200px;
  margin:80px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
}

/* LEFT SIDE */
.left h1{
  font-size:48px;
  color:var(--primary-dark);
  margin-bottom:20px;
}

.left p{
  color:#666;
  font-size:17px;
  line-height:1.7;
  margin-bottom:40px;
}

.contact-title{
  font-size:28px;
  color:var(--primary-dark);
  margin-bottom:25px;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}

.icon-box{
  width:60px;
  height:60px;
  background:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
}

.icon-box svg{
  width:28px;
  height:28px;
  fill:#fff;
}

.contact-item h4{
  font-size:20px;
  color:var(--primary-dark);
  margin-bottom:6px;
}

.contact-item span{
  color:#666;
  font-size:16px;
}

/* RIGHT FORM */
.form-box{
  background:var(--primary-dark);
  padding:45px;
  border-radius:6px;
  color:#fff;
}

.form-box h2{
  font-size:32px;
  margin-bottom:30px;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-size:15px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:none;
  border-radius:4px;
  font-size:15px;
  outline:none;
}

.form-group textarea{
  resize:none;
  height:120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#999;
}

button{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:14px 30px;
  font-size:16px;
  border-radius:4px;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  background:#4a0c47;
}

/*  RESPONSIVE  */

@media (max-width: 1024px) {
  .get-touch {
    gap:40px;
  }
  .left h1 {
    font-size:40px;
  }
  .contact-title {
    font-size:24px;
  }
  .contact-item h4 {
    font-size:18px;
  }
  .contact-item span {
    font-size:15px;
  }
  .form-box h2 {
    font-size:28px;
  }
}


@media (max-width: 768px) {
  .get-touch {
    grid-template-columns: 1fr;
    gap:30px;
  }
  .left h1 {
    font-size:34px;
    text-align:center;
  }
  .left p {
    font-size:16px;
    text-align:center;
  }
  .contact-title {
    font-size:22px;
    text-align:center;
  }
  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap:10px;
  }
  .icon-box {
    margin-bottom:8px;
  }
  .form-box {
    padding:35px 20px;
  }
  .form-box h2 {
    font-size:26px;
    text-align:center;
  }
}


@media (max-width: 480px) {
  .get-touch {
    margin:50px auto;
    padding:0 15px;
    gap:25px;
  }
  .left h1 {
    font-size:28px;
  }
  .left p {
    font-size:15px;
  }
  .contact-title {
    font-size:20px;
  }
  .contact-item h4 {
    font-size:16px;
  }
  .contact-item span {
    font-size:14px;
  }
  .icon-box {
    width:50px;
    height:50px;
  }
  .icon-box svg {
    width:24px;
    height:24px;
  }
  .form-box {
    padding:25px 15px;
  }
  .form-box h2 {
    font-size:22px;
  }
  .form-group input,
  .form-group textarea {
    padding:12px 14px;
    font-size:14px;
  }
  button {
    padding:12px 25px;
    font-size:15px;
  }
}


/*  MAIN FOOTER*/
.footer{
  background:#3a0a37;
  padding:80px 30px 50px;
  color:#fff;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:50px;
}

/* Logo image */
.logo-img{
  max-width:150px;
  display:block;
}

/* Text */
.footer p{
  color: #ddd;
  line-height:1.8;
  font-size:16px;
}

/* Headings */
.footer h3{
  color:#fff;
  font-size:22px;
  margin-bottom:20px;
}

/* Lists */
.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin-bottom:14px;
}

.footer ul li a{
  color:#fff;
  text-decoration:none;
  font-size:17px;
  transition:0.3s;
}

/* Hover effect on footer links */
.footer ul li a:hover{
  color:var(--primary);
  transform: translateX(5px);
}

/* ================= BOTTOM FOOTER ================= */
.bottom-footer{
  background:#fff;
  border-top:1px solid rgba(255,255,255,0.15);
  padding:20px 30px;
}

.bottom-footer .container{
  max-width:1300px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.bottom-footer p{
  color:#3a0a37;
  font-size:15px;
}

.bottom-links{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.bottom-links a{
  color:#3a0a37;
  text-decoration:none;
  font-size:15px;
}

.bottom-links a:hover{
  color:#7b3f77;
}

/* RESPONSIVE  */


@media (max-width:1024px){
  .top-footer{
    padding:50px 20px;
  }
  .top-footer-box{
    grid-template-columns: repeat(2,1fr);
    gap:25px;
    padding:35px 30px;
  }
  .icon{
    width:50px;
    height:50px;
  }
  .icon svg{
    width:24px;
    height:24px;
  }
  .contact-text small{
    font-size:14px;
  }
  .contact-text strong{
    font-size:18px;
  }
  .footer h3{
    font-size:20px;
  }
  .footer p,
  .footer ul li a{
    font-size:15px;
  }
}

/* Small tablets / large mobiles */
@media (max-width:768px){
  .top-footer-box{
    grid-template-columns:1fr;
    gap:20px;
    padding:30px 20px;
  }
  .contact-box{
    flex-direction:row;
    justify-content:flex-start;
  }
  .icon{
    width:45px;
    height:45px;
  }
  .icon svg{
    width:22px;
    height:22px;
  }
  .contact-text small{
    font-size:13px;
  }
  .contact-text strong{
    font-size:16px;
  }
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:25px;
  }
  .logo-img{
    max-width:130px;
  }
  .footer h3{
    font-size:18px;
  }
  .footer p,
  .footer ul li a{
    font-size:14px;
  }
}

@media (max-width:480px){
  .top-footer{
    padding:40px 15px;
  }
  .top-footer-box{
    padding:25px 15px;
    gap:15px;
  }
  .contact-box{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
  }
  .icon{
    width:40px;
    height:40px;
  }
  .icon svg{
    width:20px;
    height:20px;
  }
  .contact-text small{
    font-size:12px;
  }
  .contact-text strong{
    font-size:15px;
  }
  .footer-container{
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
  }
  .logo-img{
    max-width:120px;
    margin:auto;
  }
  .footer h3{
    font-size:16px;
  }
  .footer p,
  .footer ul li a{
    font-size:13px;
  }
  .bottom-footer .container{
    flex-direction:column;
    align-items:center;
    gap:10px;
  }
  .bottom-footer p{
    font-size:13px;
  }
  .bottom-links{
    justify-content:center;
    gap:15px;
  }
  .bottom-links a{
    font-size:13px;
  }
}





/*privacy policy*/
   .privacy-hero{
      min-height:320px;
      display:flex;
      align-items:center;
      position:relative;
      color:#fff;
      padding:0 20px;
    }

    /* overlay */
    .privacy-overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.6);
      z-index:1;
    }
 

    .privacy-hero-content{
      position:relative;
      z-index:2;
      max-width:600px;
      padding:80px 0;
          
  margin-left:120px; 
    }

    .privacy-hero-title{
      font-size:42px;
      font-weight:700;
      margin-bottom:10px;
        
    }

    .privacy-hero-breadcrumb{
      font-size:14px;
      opacity:0.9;
    }

    /*  CONTENT SECTION  */
    .privacy-content{
      padding:80px 20px;
      background:#fff;
    }

    .privacy-container{
      max-width:900px;
      margin:auto;
    }

    .privacy-heading{
      font-size:36px;
      font-weight:700;
      color:#7b3f77;
      text-align:center;
      margin-bottom:40px;
    }

    .privacy-text{
      font-size:16px;
      line-height:1.8;
      color:#555;
      margin-bottom:20px;
    }

    .privacy-hero-breadcrumb a{
  color:#ffffffcc;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.privacy-hero-breadcrumb a:hover{
  color:#7b3f77;
  text-decoration:underline;
}

.privacy-subheading{
  font-size:26px;
  font-weight:600;
  color:#7b3f77;
  margin-bottom:25px;
  line-height:1.4;
}

    /*  RESPONSIVE  */
    @media (max-width:768px){
      .privacy-hero-content{
        padding:60px 0;
      }
      .privacy-hero-title{
        font-size:30px;
      }
      .privacy-heading{
        font-size:28px;
      }
    }

    @media (max-width:480px){
      .privacy-hero{
        min-height:250px;
      }
      .privacy-hero-title{
        font-size:24px;
      }
      .privacy-heading{
        font-size:24px;
      }
      .privacy-text{
        font-size:14px;
      }
    }


    
/*term&condition*/
   .terms-hero{
      min-height:320px;
      display:flex;
      align-items:center;
      position:relative;
      color:#fff;
      padding:0 20px;
    }

    /* overlay */
    .terms-overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.6);
      z-index:1;
    }
 

    .terms-hero-content{
      position:relative;
      z-index:2;
      max-width:600px;
      padding:80px 0;
          
  margin-left:120px; 
    }

    .terms-hero-title{
      font-size:42px;
      font-weight:700;
      margin-bottom:10px;
        
    }

    .terms-hero-breadcrumb{
      font-size:14px;
      opacity:0.9;
    }

    /*  CONTENT SECTION  */
    .terms-content{
      padding:80px 20px;
      background:#fff;
    }

    .terms-container{
      max-width:900px;
      margin:auto;
    }

    .terms-heading{
      font-size:36px;
      font-weight:700;
      color:#7b3f77;
      text-align:center;
      margin-bottom:40px;
    }

    .terms-text{
      font-size:16px;
      line-height:1.8;
      color:#555;
      margin-bottom:20px;
    }

    .terms-hero-breadcrumb a{
  color:#ffffffcc;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.terms-hero-breadcrumb a:hover{
  color:#7b3f77;
  text-decoration:underline;
}

.terms-subheading{
  font-size:26px;
  font-weight:600;
  color:#7b3f77;
  margin-bottom:25px;
  line-height:1.4;
}

    /*  RESPONSIVE  */
    @media (max-width:768px){
      .terms-hero-content{
        padding:60px 0;
      }
      .terms-hero-title{
        font-size:30px;
      }
      .terms-heading{
        font-size:28px;
      }
    }

    @media (max-width:480px){
      .terms-hero{
        min-height:250px;
      }
      .terms-hero-title{
        font-size:24px;
      }
      .terms-heading{
        font-size:24px;
      }
      .terms-text{
        font-size:14px;
      }
    }


    /* ===== Container ===== */
.insurance-container{
  max-width:1000px;
  margin:60px auto;
  padding:0 20px;
}

/* ===== Header ===== */
.insurance-header h1{
  font-size:44px;
  font-weight:700;
  color:#3a0a37;
  line-height:1.2;
}

.insurance-header p{
  margin-top:15px;
  max-width:520px;
  color:#222;
  font-size:16px;
}

/* ===== Form Box ===== */
.insurance-form-box{
  margin-top:40px;
  background:var(--insurance-bg);
  padding:40px;
  border-radius:8px;
}

/* ===== Section Title ===== */
.insurance-section-title{
  font-size:20px;
  font-weight:600;
  color:#3a0a37;
  margin-bottom:25px;
}

/* ===== Grid ===== */
.insurance-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

/* ===== Field ===== */
.insurance-field{
  display:flex;
  flex-direction:column;
}

.insurance-field label{
  font-size:14px;
  margin-bottom:8px;
  font-weight:500;
}

/* ===== Input ===== */
.insurance-input-wrapper{
  position:relative;
}

.insurance-input-wrapper i{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  color:#ffb5fa;
}

.insurance-input{
  width:100%;
  height:50px;
  padding-left:45px;
  border:1px solid var(--insurance-border);
  border-radius:4px;
  font-size:14px;
  outline:none;
}

.insurance-input:focus{
  border-color:#3a0a37;
}

/* ===== Full Width ===== */
.insurance-full{
  grid-column:1 / -1;
}

/* ===== Button ===== */
.insurance-button-wrapper{
  margin-top:35px;
}

.insurance-button{
  width:100%;
  height:55px;
  background:#3a0a37;
  color:#fff;
  border:none;
  font-size:16px;
  font-weight:600;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}

.insurance-button:hover{
  background:#5c0f58;
}

/* ===== Responsive ===== */
@media(max-width:768px){
  .insurance-grid{
    grid-template-columns:1fr;
  }

  .insurance-header h1{
    font-size:34px;
  }
}