@charset "UTF-8";
:root {
  --head-font: "Raleway", sans-serif;
  --body-font: "Albert Sans", sans-serif;
  --main-color: #F4A43A;
  --sub-color: #26A8D5;
  --grey-color: #000;
  --text-dark: #000;
  --smooth: all 0.3s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none !important;
}

body {
  font-family: var(--body-font);
  font-size: 21px;
  line-height: 1.5;
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

.main-color {
  color: var(--main-color);
}

.sub-color {
  color: var(--sub-color);
}

.grey-color {
  color: var(--grey-color);
}

.text-dark {
  color: var(--text-dark);
}

strong {
  color: var(--sub-color);
}

.color-white {
  color: #fff !important;
}

.head-font {
  font-family: var(--head-font) !important;
}

.body-font {
  font-family: var(--body-font) !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.h-fit-content {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.section-padding-xl {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-padding-lg {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-padding-md {
  padding-top: 75px;
  padding-bottom: 75px;
}

.auto-container {
  position: static;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.display-font {
  color: #ffffff;
  font-family: var(--head-font);
  font-size: 86px;
  font-style: normal;
  font-weight: 800;
  line-height: 92.6px;
  /* 110% */
  letter-spacing: -1px;
}

.section-title {
  font-family: var(--head-font);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.1px;
  color: var(--text-dark);
}

.head-xs {
  font-family: var(--head-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -1px;
}

.head-sm {
  font-family: var(--head-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.head-lg {
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
}

.para-lg {
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.36px;
}

.para-m {
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
  letter-spacing: -0.32px;
}

.para-sm {
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.section-type {
  color: var(--sub-color);
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.primary-btn {
  min-height: 56px;
  position: relative;
  display: flex;
  padding: 10px 42px 10px 22px;
  justify-content: center;
  align-items: center;
  color: var(--text-dark) !important;
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  letter-spacing: -0.64px;
  background-color: var(--main-color) !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.primary-btn::after {
  content: "";
  position: absolute;
  background-image: url("../images/icons/arrow.svg");
  height: 21px;
  width: 21px;
  z-index: 1;
  right: 14px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.primary-btn:hover {
  background-color: #EED0A9 !important;
  padding: 10px 22px 10px 42px;
}
.primary-btn:hover::after {
  right: unset;
  left: 14px;
  transform: rotate(45deg);
}

.secondary-btn {
  height: 55px;
  display: flex;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--body-font);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  border: 2px solid var(--sub-color);
  transition: var(--smooth);
}
.secondary-btn:hover {
  color: var(--sub-color);
  border: 2px solid #fff;
  background-color: #fff;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

/* Fill from Left */
.fill-img-left img {
  clip-path: inset(0 100% 0 0);
}

/* Fill from Right */
.fill-img-right img {
  clip-path: inset(0 0 0 100%);
}

/* Fill from Top */
.fill-img-top img {
  clip-path: inset(0 0 100% 0);
}

/* Fill from Bottom */
.fill-img-bottom img {
  clip-path: inset(100% 0 0 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.home-banner {
  width: 100%;
  height: 100vh;
  background-image: url("../images/home-banner.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-banner .auto-container {
  max-width: 1810px;
}
.home-banner .display-font span {
  color: #8AF5AE;
}
.home-banner .clients-text {
  background: #000a26;
  padding: 5px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  position: relative;
  bottom: -18px;
  border-radius: 99px;
}
.home-banner .banner-client-slides {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.home-banner .banner-client-slides .slick-track {
  display: flex !important;
  align-items: center;
}
.home-banner .banner-client-slides .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  margin-left: 30px;
}

.client-segments {
  position: relative;
  padding: 0;
}
.client-segments .content-wrapper {
  position: relative;
}
.client-segments .segment-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
}
.client-segments .segment-block .section-type {
  margin-bottom: 16px;
}
.client-segments .segment-block .section-title {
  margin-bottom: 24px;
  line-height: 1.2;
}
.client-segments .segment-block .para-m {
  color: var(--text-dark);
}
.client-segments .image-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-segments .segment-image {
  position: absolute;
  width: 100%;
  opacity: 0;
  filter: blur(20px);
}
.client-segments .segment-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.client-segments .segment-image:first-child {
  opacity: 1;
  filter: blur(0);
}

@media (max-width: 991px) {
  .client-segments .segment-block {
    min-height: auto;
    padding: 0 0 32px 0;
  }
  .client-segments .section-title {
    font-size: 32px !important;
  }
}
.claim-service-section .service-card {
  padding: 24px 24px 10px 24px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #26A8D5;
  background: linear-gradient(180deg, #FFF 0%, #F0FBFF 100%);
}

.specialise-section {
  background: #F8FBFD;
}
.specialise-section .specialise-next,
.specialise-section .specialise-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(244, 164, 58, 0.5294117647);
  cursor: pointer;
  transition: var(--smooth);
}
.specialise-section .specialise-next i,
.specialise-section .specialise-prev i {
  color: rgba(244, 164, 58, 0.5294117647);
  font-size: 18px;
  transition: var(--smooth);
}
.specialise-section .specialise-next:hover,
.specialise-section .specialise-prev:hover {
  border: 2px solid var(--main-color);
}
.specialise-section .specialise-next:hover i,
.specialise-section .specialise-prev:hover i {
  color: var(--main-color);
}
.specialise-section .specialise-slider {
  width: 1270px;
}
.specialise-section .specialise-slider .specialise-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 24px 24px;
  align-content: end;
  height: 370px;
  width: 290px;
  color: #fff;
}
.specialise-section .specialise-slider .specialise-card h4 {
  font-family: var(--body-font);
}
.specialise-section .specialise-slider .specialise-card.card1 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/motor-extended-warranty.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card2 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/device-extended-warranty.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card3 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/device-damage-warranty.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card4 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/gap-insurance.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card5 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/tyre-alloy.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card6 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/key-insurance.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card7 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/eye-wear.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card8 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/roadside-assistance.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card9 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/pre-warranty.webp") lightgray 50%/cover no-repeat;
}
.specialise-section .specialise-slider .specialise-card.card10 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.42%, #000 100%), url("../images/smart-repair.webp") lightgray 50%/cover no-repeat;
}

.why-section {
  background: #F8FBFD;
}
.why-section .why-card {
  padding: 32px 24px;
  gap: 10px;
  background: #FFF;
  position: relative;
}
.why-section .why-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 5px;
  height: 89.006px;
  background: var(--main-color);
  border-radius: 30px;
  z-index: 1;
}
.why-section .why-card img {
  height: 65px;
}

.cta-section {
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(24, 41, 61, 0.82) 74.04%, #061B34 99.43%), url("../images/cta-banner.webp") lightgray 50%/cover no-repeat;
  background-attachment: fixed;
}
.cta-section .section-title {
  padding-left: 49px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-left: 2px solid #fff;
}

/* Reveal Animation Base */
.reveal-text {
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}

.page-banner {
  width: 100%;
  height: 42vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 82px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 34, 0.76);
}

.about-intro-section {
  /* Stagger Text Fill Animation */
}
.about-intro-section .stagger-text-fill {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--text-dark);
  font-family: var(--body-font);
}
.about-intro-section .stagger-text-fill .about-brand {
  font-family: var(--body-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--main-color);
}
.about-intro-section .stagger-text-fill .word {
  display: inline-block;
  margin-right: 0.25em;
  overflow: hidden;
}
.about-intro-section .stagger-text-fill .char {
  display: inline-block;
  color: #c9c9c9;
  will-change: color;
}
.about-intro-section .stagger-text-fill .char.animated {
  color: var(--text-dark);
}
.about-intro-section .logo-right-border {
  border-right: 4px solid rgba(96, 180, 204, 0.1294117647);
}
.about-intro-section .logo-right-border img {
  width: 100%;
}

.mission-vision-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.77) 0%, rgba(0, 0, 0, 0.6) 100%), url(../images/saudi-bg.webp) lightgray 50%/cover no-repeat;
  background-attachment: fixed;
  background-position: top;
}
.mission-vision-section .partner-logo-box {
  padding: 24px;
  height: 243px;
  align-content: center;
}
.mission-vision-section .partner-desc {
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.28) 0%, rgba(153, 153, 153, 0) 100%);
  backdrop-filter: blur(7.8499999046px);
  padding: 24px;
}
.mission-vision-section .mission-part .mission-box {
  background: rgba(255, 255, 255, 0.1882352941);
  padding: 24px;
  border: 4px solid #24cfff;
  border-radius: 8px;
  color: #fff;
}

.value-tick {
  height: 30px;
}

.happy-client1 {
  margin-top: -40px;
}

.happy-client2 {
  margin-top: 40px;
}

/* ========================= 
   CONTACT PAGE STYLES
========================= */
/* Background colors */
.bg-light-blue {
  background: linear-gradient(180deg, #dff7ff 0%, #ffffff 100%);
}

.text-dark {
  color: var(--text-dark) !important;
}

/* Contact Cards */
.contact-card {
  padding: 32px;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(38, 168, 213, 0.1);
  transition: var(--smooth);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(38, 168, 213, 0.15);
  border-color: var(--sub-color);
}

.contact-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}
.contact-icon img {
  height: 50px;
}

/* Form Styles */
.contact-form .form-control,
.contact-form .form-label {
  font-family: var(--body-font);
}

.contact-form button {
  outline: none !important;
  border: none !important;
}
.contact-form .form-label {
  color: var(--text-dark);
  font-weight: 600;
}
.contact-form .form-control {
  border: 1px solid rgba(6, 27, 52, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 18px;
  color: var(--text-dark);
  background-color: #fff;
  transition: var(--smooth);
}
.contact-form .form-control::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.contact-form .form-control::placeholder {
  color: #999;
  font-weight: 400;
}
.contact-form .form-control:focus {
  border-color: var(--sub-color);
  box-shadow: 0 0 0 3px rgba(38, 168, 213, 0.1);
  outline: none;
}
.contact-form .form-control:invalid {
  border-color: #dc3545;
}
.contact-form .form-control:invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.contact-form textarea.form-control {
  resize: vertical;
  font-family: var(--body-font);
}
.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
.contact-form .form-check-input {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(6, 27, 52, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--smooth);
}
.contact-form .form-check-input:checked {
  background-color: var(--sub-color);
  border-color: var(--sub-color);
}
.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(38, 168, 213, 0.1);
  border-color: var(--sub-color);
}
.contact-form .form-check-label {
  cursor: pointer;
  color: var(--grey-color);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.text-muted {
  color: #999 !important;
  font-size: 14px;
  font-weight: 400;
}

/* Form Submission Message */
.form-confirmation {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.form-confirmation.show {
  display: block;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-confirmation.success {
  background-color: rgba(42, 199, 114, 0.1);
  border-left: 4px solid #2ac772;
  color: #1a8c4a;
}

.form-confirmation.success strong {
  color: #1a8c4a;
}

.form-confirmation.error {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
  color: #721c24;
}

.form-confirmation.error strong {
  color: #721c24;
}

.confirmation-reference {
  font-family: monospace;
  font-size: 13px;
  margin-top: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  word-break: break-all;
}

/* Info Box */
.info-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(38, 168, 213, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

/* Accordion Styles */
.accordion {
  border: none;
}

.accordion-item {
  border: 1px solid rgba(6, 27, 52, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  padding: 24px;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--text-dark);
  background-color: #fff;
  border: none;
  box-shadow: none;
  transition: var(--smooth);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(38, 168, 213, 0.05);
  color: var(--sub-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23061B34'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2326A8D5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(38, 168, 213, 0.1);
  border-color: var(--sub-color);
}

.accordion-body {
  padding: 24px;
  background: #fff;
  border-top: 1px solid rgba(6, 27, 52, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }
  .info-box {
    padding: 30px 20px;
  }
  .accordion-button {
    padding: 18px;
  }
  .accordion-body {
    padding: 18px;
  }
  .ps-lg-4 {
    padding-left: 0 !important;
    margin-bottom: 40px;
  }
  .pe-lg-4 {
    padding-right: 0 !important;
  }
}
.location-map {
  width: 100%;
  height: 370px;
}

.service-images svg {
  width: 100% !important;
  height: 280px;
}

.process-section .process-card {
  overflow-x: clip;
  transition: var(--smooth);
}
.process-section .process-card h3 {
  transition: var(--smooth);
}
.process-section .process-card p {
  color: #939393;
  transition: var(--smooth);
}
.process-section .process-card .process-no {
  position: relative;
  z-index: 1;
  bottom: -70px;
  font-size: 154px;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  opacity: 0.05;
  transition: var(--smooth);
}
.process-section .process-card .process-info {
  position: relative;
  z-index: 2;
  padding: 32px 24px 24px 24px;
  background: #fff;
  border-top: 1px solid rgba(6, 27, 52, 0.1);
  box-shadow: 0px -16px 20px 0 rgba(0, 0, 0, 0.07);
}
.process-section .process-card.active-card {
  transform: translateY(-10px);
}
.process-section .process-card.active-card .process-no {
  transform: translateY(-30px);
  color: var(--main-color);
  opacity: 1;
}
.process-section .process-card.active-card h3 {
  color: var(--sub-color);
}
.process-section .process-card.active-card p {
  color: var(--text-dark);
}

.network-section .network-card {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #26A8D5;
  transition: var(--smooth);
}
.network-section .network-card .para-lg {
  margin-bottom: 0;
}
.network-section .network-card .main-no {
  font-family: var(--body-font);
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
}
.network-section .network-card .main-no2 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 54px;
  line-height: normal;
}
.network-section .network-main-card {
  background: #106785;
  height: 100%;
  border-radius: 15px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}
.network-section .network-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/up-illu.svg");
  z-index: 0;
  opacity: 0.1;
}
.network-section .network-main-card p {
  position: relative;
  z-index: 1;
}
.network-section .main-no3 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 100px;
  line-height: normal;
}

.insurer-outcome-section .check-icon {
  height: 30px;
  flex-shrink: 0;
}
.insurer-outcome-section .secondary-btn {
  background-color: #000;
  border: 2px solid #000;
}
.insurer-outcome-section .secondary-btn:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid var(--sub-color);
}

.partners-get-section {
  position: relative;
  background-image: url("../images/partners-get.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.partners-get-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
.partners-get-section .partner-box {
  position: relative;
  height: 100%;
  align-content: center;
  border-radius: 8px;
  padding: 24px;
  border-left: 5px solid rgba(255, 255, 255, 0.54);
  background: linear-gradient(117deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0) 100%);
  backdrop-filter: blur(7.8499999046px);
}

.partner-integrate-section .integrate-card {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.partner-integrate-section .integrate-img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.services-intro-section {
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
}
.services-intro-section .section-title {
  color: var(--text-dark);
}
.services-intro-section .service-page-img {
  border-radius: 26px;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.section-type-1 {
  background: linear-gradient(180deg, #FFF 0%, #e2f7ff 100%);
  height: calc(100vh - 82px);
  position: sticky;
  top: 82px;
  align-content: center;
}
.section-type-1 .section-type {
  color: var(--sub-color);
  margin-bottom: 16px;
}
.section-type-1 .section-title {
  color: var(--text-dark);
}

.section-type-2 {
  background: linear-gradient(180deg, #FFF 0%, #fff8ed 100%);
  height: calc(100vh - 82px);
  position: sticky;
  top: 82px;
  align-content: center;
}
.section-type-2 .section-type {
  color: var(--main-color);
  margin-bottom: 16px;
}
.section-type-2 .section-title {
  color: var(--text-dark);
}

.z-4 {
  z-index: 4 !important;
}

.services-cta-section {
  background: linear-gradient(180deg, rgba(102, 102, 102, 0.32) 0%, rgba(24, 41, 61, 0.82) 74.04%, #061B34 99.43%), url(../images/services-cta.webp) lightgray 50%/cover no-repeat;
  background-attachment: fixed;
  /* background-size: cover; */
  position: relative;
  background-position-y: top;
}
.services-cta-section .section-title {
  color: #fff;
}
.services-cta-section .secondary-btn:hover {
  background-color: var(--sub-color);
  border-color: var(--sub-color);
  color: #fff;
}

.service-card {
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(38, 168, 213, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--smooth);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(38, 168, 213, 0.12);
  transform: translateY(-4px);
}
.service-card .head-lg {
  color: var(--text-dark);
  margin-bottom: 24px;
}

.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.capabilities-list .capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  transition: var(--smooth);
}
.capabilities-list .capability-item:hover {
  transform: translateX(8px);
  color: var(--sub-color);
}
.capabilities-list .capability-item .capability-dot {
  width: 8px;
  height: 8px;
  background: var(--sub-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 27, 52, 0.1);
}
.benefits-list .benefit-item:last-child {
  border-bottom: none;
}
.benefits-list .benefit-item .benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.benefits-list .benefit-item .benefit-icon i {
  color: #fff;
  font-size: 18px;
}
.benefits-list .benefit-item p {
  color: var(--text-dark);
  margin: 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  transition: var(--smooth);
}
.features-list .feature-item:hover {
  transform: translateX(8px);
  color: var(--sub-color);
}
.features-list .feature-item .feature-dot {
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.outcomes-list .outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 27, 52, 0.1);
}
.outcomes-list .outcome-item:last-child {
  border-bottom: none;
}
.outcomes-list .outcome-item .outcome-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4A43A 0%, #FFD580 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.outcomes-list .outcome-item .outcome-icon i {
  color: #fff;
  font-size: 18px;
}
.outcomes-list .outcome-item p {
  color: var(--text-dark);
  margin: 0;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-list .service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  transition: var(--smooth);
}
.services-list .service-item:hover {
  transform: translateX(8px);
  color: var(--sub-color);
}
.services-list .service-item .service-dot {
  width: 8px;
  height: 8px;
  background: #26A8D5;
  border-radius: 50%;
  flex-shrink: 0;
}

.risk-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.risk-benefits-list .risk-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 27, 52, 0.1);
}
.risk-benefits-list .risk-benefit-item:last-child {
  border-bottom: none;
}
.risk-benefits-list .risk-benefit-item .risk-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #26A8D5 0%, #1a8cb8 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.risk-benefits-list .risk-benefit-item .risk-benefit-icon i {
  color: #fff;
  font-size: 18px;
}
.risk-benefits-list .risk-benefit-item p {
  color: var(--text-dark);
  margin: 0;
}

.reporting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reporting-list .reporting-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  transition: var(--smooth);
}
.reporting-list .reporting-item:hover {
  transform: translateX(8px);
  color: var(--sub-color);
}
.reporting-list .reporting-item .reporting-dot {
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.reporting-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reporting-outcomes-list .reporting-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6, 27, 52, 0.1);
}
.reporting-outcomes-list .reporting-outcome-item:last-child {
  border-bottom: none;
}
.reporting-outcomes-list .reporting-outcome-item .reporting-outcome-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.reporting-outcomes-list .reporting-outcome-item .reporting-outcome-icon i {
  color: #fff;
  font-size: 18px;
}
.reporting-outcomes-list .reporting-outcome-item p {
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 1024px) {
  .service-card {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .service-card {
    padding: 24px;
  }
  .service-card .head-lg {
    font-size: 20px;
  }
  .capabilities-list .capability-item,
  .features-list .feature-item,
  .services-list .service-item,
  .reporting-list .reporting-item {
    font-size: 14px;
    padding: 10px 0;
  }
  .benefits-list .benefit-item,
  .outcomes-list .outcome-item,
  .risk-benefits-list .risk-benefit-item,
  .reporting-outcomes-list .reporting-outcome-item {
    padding: 12px 0;
  }
  .benefits-list .benefit-item .benefit-icon,
  .benefits-list .benefit-item .outcome-icon,
  .benefits-list .benefit-item .risk-benefit-icon,
  .benefits-list .benefit-item .reporting-outcome-icon,
  .outcomes-list .outcome-item .benefit-icon,
  .outcomes-list .outcome-item .outcome-icon,
  .outcomes-list .outcome-item .risk-benefit-icon,
  .outcomes-list .outcome-item .reporting-outcome-icon,
  .risk-benefits-list .risk-benefit-item .benefit-icon,
  .risk-benefits-list .risk-benefit-item .outcome-icon,
  .risk-benefits-list .risk-benefit-item .risk-benefit-icon,
  .risk-benefits-list .risk-benefit-item .reporting-outcome-icon,
  .reporting-outcomes-list .reporting-outcome-item .benefit-icon,
  .reporting-outcomes-list .reporting-outcome-item .outcome-icon,
  .reporting-outcomes-list .reporting-outcome-item .risk-benefit-icon,
  .reporting-outcomes-list .reporting-outcome-item .reporting-outcome-icon {
    width: 36px;
    height: 36px;
  }
  .benefits-list .benefit-item .benefit-icon i,
  .benefits-list .benefit-item .outcome-icon i,
  .benefits-list .benefit-item .risk-benefit-icon i,
  .benefits-list .benefit-item .reporting-outcome-icon i,
  .outcomes-list .outcome-item .benefit-icon i,
  .outcomes-list .outcome-item .outcome-icon i,
  .outcomes-list .outcome-item .risk-benefit-icon i,
  .outcomes-list .outcome-item .reporting-outcome-icon i,
  .risk-benefits-list .risk-benefit-item .benefit-icon i,
  .risk-benefits-list .risk-benefit-item .outcome-icon i,
  .risk-benefits-list .risk-benefit-item .risk-benefit-icon i,
  .risk-benefits-list .risk-benefit-item .reporting-outcome-icon i,
  .reporting-outcomes-list .reporting-outcome-item .benefit-icon i,
  .reporting-outcomes-list .reporting-outcome-item .outcome-icon i,
  .reporting-outcomes-list .reporting-outcome-item .risk-benefit-icon i,
  .reporting-outcomes-list .reporting-outcome-item .reporting-outcome-icon i {
    font-size: 16px;
  }
  .services-cta-section .section-title {
    font-size: 32px;
  }
  .services-cta-section .d-flex {
    flex-direction: column;
  }
  .services-cta-section .d-flex .primary-btn,
  .services-cta-section .d-flex .secondary-btn {
    width: 100%;
  }
}
footer {
  background: #061B34;
  padding: 110px 0 0 0;
  position: relative;
  z-index: 1;
}
footer .address-txt {
  color: #7FD8F7;
}
footer .footer-div {
  width: 1px;
  height: 19px;
  background: rgba(255, 255, 255, 0.66);
}
footer .footer-txt-img {
  bottom: -14px;
}
footer .helpline-btn {
  display: flex;
  padding: 10px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--sub-color);
  box-shadow: 6px 4px 10px 0 rgba(0, 0, 0, 0.25) inset;
}
footer .helpline-btn .english-txt {
  color: #000;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .helpline-btn .arab-txt {
  color: #000;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
footer .footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--body-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer a {
  transition: var(--smooth);
}
footer a:hover {
  color: #7FD8F7;
}
footer .footer-head {
  font-family: var(--head-font);
  font-size: 19px;
  font-weight: 700;
}
footer .footer-logo img {
  height: 56px;
}
footer .social-icon {
  color: #fff;
  transition: var(--smooth);
}
footer .social-icon:hover {
  color: #35E0B4;
}
footer .para-m {
  font-size: 19px;
}

.privacy-policy-section {
  background: #f8fbfd;
}
.privacy-policy-section .policy-content {
  font-family: var(--body-font);
  color: var(--text-dark);
}
.privacy-policy-section .policy-content .policy-intro {
  margin-bottom: 48px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  border-left: 4px solid var(--sub-color);
  border-radius: 8px;
}
.privacy-policy-section .policy-content .policy-intro .intro-text {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-dark);
}
.privacy-policy-section .policy-content .policy-intro .intro-text strong {
  color: var(--sub-color);
  font-weight: 700;
}
.privacy-policy-section .policy-content .policy-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out forwards;
}
.privacy-policy-section .policy-content .policy-section:nth-child(2) {
  animation-delay: 0.1s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(3) {
  animation-delay: 0.2s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(4) {
  animation-delay: 0.3s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(5) {
  animation-delay: 0.4s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(6) {
  animation-delay: 0.5s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(7) {
  animation-delay: 0.6s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(8) {
  animation-delay: 0.7s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(9) {
  animation-delay: 0.8s;
}
.privacy-policy-section .policy-content .policy-section:nth-child(10) {
  animation-delay: 0.9s;
}
.privacy-policy-section .policy-content .policy-section p {
  font-size: 21px;
  line-height: 1.5;
  margin: 16px 0;
  color: var(--text-dark);
}
.privacy-policy-section .policy-content .policy-section p strong {
  color: var(--sub-color);
  font-weight: 700;
}
.privacy-policy-section .policy-content .policy-section .note-text {
  font-size: 21px;
  line-height: 1.5;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(244, 164, 58, 0.1);
  border-left: 3px solid var(--main-color);
  border-radius: 4px;
  font-style: italic;
  color: #555;
}
.privacy-policy-section .policy-content .policy-section-title {
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--main-color);
  display: inline-block;
}
.privacy-policy-section .policy-content .policy-section-title:first-of-type {
  margin-top: 0;
}
.privacy-policy-section .policy-content .policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}
.privacy-policy-section .policy-content .policy-list li {
  font-size: 21px;
  line-height: 2;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  transition: var(--smooth);
}
.privacy-policy-section .policy-content .policy-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 21px;
  line-height: 2;
}
.privacy-policy-section .policy-content .policy-list li:hover {
  padding-left: 32px;
  color: var(--sub-color);
}
.privacy-policy-section .policy-content .policy-list li strong {
  color: var(--sub-color);
  font-weight: 700;
}
.privacy-policy-section .policy-content .policy-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 24px 0;
}
.privacy-policy-section .policy-content .policy-table thead {
  background: linear-gradient(135deg, var(--sub-color) 0%, #1a8cb8 100%);
}
.privacy-policy-section .policy-content .policy-table thead tr th {
  padding: 18px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.privacy-policy-section .policy-content .policy-table thead tr th:last-child {
  border-right: none;
}
.privacy-policy-section .policy-content .policy-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: var(--smooth);
}
.privacy-policy-section .policy-content .policy-table tbody tr:hover {
  background: #f8fbfd;
}
.privacy-policy-section .policy-content .policy-table tbody tr:last-child {
  border-bottom: none;
}
.privacy-policy-section .policy-content .policy-table tbody tr td {
  padding: 16px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-dark);
  border-right: 1px solid #e0e0e0;
}
.privacy-policy-section .policy-content .policy-table tbody tr td:last-child {
  border-right: none;
}
.privacy-policy-section .policy-content .policy-table tbody tr td strong {
  color: var(--sub-color);
  font-weight: 700;
}
.privacy-policy-section .policy-content .contact-section {
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 168, 213, 0.2);
  margin-top: 48px;
}
.privacy-policy-section .policy-content .contact-section .contact-text {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-dark);
}
.privacy-policy-section .policy-content .contact-section .contact-text strong {
  color: var(--sub-color);
  font-weight: 700;
}
.privacy-policy-section .policy-content .contact-section .contact-text .contact-link {
  color: var(--sub-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--smooth);
}
.privacy-policy-section .policy-content .contact-section .contact-text .contact-link:hover {
  border-bottom-color: var(--sub-color);
  color: #1a8cb8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .privacy-policy-section .policy-content .policy-section-title {
    font-size: 24px;
  }
  .privacy-policy-section .policy-content .policy-table {
    font-size: 14px;
  }
  .privacy-policy-section .policy-content .policy-table thead th,
  .privacy-policy-section .policy-content .policy-table tbody td {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .privacy-policy-section .policy-content .policy-intro,
  .privacy-policy-section .policy-content .contact-section {
    padding: 16px;
  }
  .privacy-policy-section .policy-content .policy-section-title {
    font-size: 20px !important;
    margin-bottom: 16px;
  }
  .privacy-policy-section .policy-content p {
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .privacy-policy-section .policy-content .policy-list li {
    font-size: 18px !important;
    line-height: 29px !important;
    margin-bottom: 12px;
    padding-left: 24px;
  }
  .privacy-policy-section .policy-content .policy-table {
    font-size: 18px !important;
    margin: 16px 0;
  }
  .privacy-policy-section .policy-content .policy-table thead th {
    padding: 12px 8px;
    font-size: 18px !important;
  }
  .privacy-policy-section .policy-content .policy-table tbody tr td {
    padding: 12px 8px;
    font-size: 18px !important;
  }
  .privacy-policy-section .policy-content .contact-text {
    font-size: 16px;
  }
  .privacy-policy-section .policy-content .note-text {
    font-size: 13px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .privacy-policy-section .policy-content .policy-section-title {
    font-size: 18px;
  }
  .privacy-policy-section .policy-content .policy-list li {
    font-size: 13px;
    line-height: 22px;
  }
  .privacy-policy-section .policy-content .policy-table {
    overflow-x: auto;
    font-size: 11px;
  }
  .privacy-policy-section .policy-content .policy-table thead th,
  .privacy-policy-section .policy-content .policy-table tbody td {
    padding: 8px;
    font-size: 11px;
  }
}
.terms-of-use-section {
  background: #f8fbfd;
}
.terms-of-use-section .terms-content {
  font-family: var(--body-font);
  color: var(--text-dark);
}
.terms-of-use-section .terms-content .terms-intro {
  margin-bottom: 48px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  border-left: 4px solid var(--sub-color);
  border-radius: 8px;
}
.terms-of-use-section .terms-content .terms-intro .intro-text {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  color: var(--text-dark);
}
.terms-of-use-section .terms-content .terms-intro .intro-text strong {
  color: var(--sub-color);
  font-weight: 700;
}
.terms-of-use-section .terms-content .terms-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out forwards;
}
.terms-of-use-section .terms-content .terms-section:nth-child(2) {
  animation-delay: 0.1s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(3) {
  animation-delay: 0.2s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(4) {
  animation-delay: 0.3s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(5) {
  animation-delay: 0.4s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(6) {
  animation-delay: 0.5s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(7) {
  animation-delay: 0.6s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(8) {
  animation-delay: 0.7s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(9) {
  animation-delay: 0.8s;
}
.terms-of-use-section .terms-content .terms-section:nth-child(10) {
  animation-delay: 0.9s;
}
.terms-of-use-section .terms-content .terms-section p {
  font-size: 21px;
  line-height: 1.5;
  margin: 16px 0;
  color: var(--text-dark);
}
.terms-of-use-section .terms-content .terms-section p strong {
  color: var(--sub-color);
  font-weight: 700;
}
.terms-of-use-section .terms-content .reporting-section {
  margin-bottom: 40px;
}
.terms-of-use-section .terms-content .reporting-section .reporting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.terms-of-use-section .terms-content .reporting-section .reporting-card {
  background: #ffffff;
  border: 1px solid rgba(38, 168, 213, 0.18);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(29, 51, 80, 0.06);
  transition: var(--smooth);
}
.terms-of-use-section .terms-content .reporting-section .reporting-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(29, 51, 80, 0.08);
}
.terms-of-use-section .terms-content .reporting-section .reporting-card .reporting-card-title {
  font-family: var(--head-font);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.terms-of-use-section .terms-content .reporting-section .reporting-card p {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-dark);
}
.terms-of-use-section .terms-content .reporting-section .reporting-card p strong {
  color: var(--sub-color);
  font-weight: 700;
}
.terms-of-use-section .terms-content .reporting-section .reporting-card .contact-link {
  color: var(--sub-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(38, 168, 213, 0.5);
  transition: var(--smooth);
}
.terms-of-use-section .terms-content .reporting-section .reporting-card .contact-link:hover {
  color: var(--main-color);
  border-bottom-color: rgba(244, 164, 58, 0.7);
}
.terms-of-use-section .terms-content .terms-section-title {
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--main-color);
  display: inline-block;
}
.terms-of-use-section .terms-content .terms-section-title:first-of-type {
  margin-top: 0;
}
.terms-of-use-section .terms-content .terms-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}
.terms-of-use-section .terms-content .terms-list li {
  font-size: 21px;
  line-height: 2;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  transition: var(--smooth);
}
.terms-of-use-section .terms-content .terms-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 21px;
  line-height: 2;
}
.terms-of-use-section .terms-content .terms-list li:hover {
  padding-left: 32px;
  color: var(--sub-color);
}
.terms-of-use-section .terms-content .terms-list li strong {
  color: var(--sub-color);
  font-weight: 700;
}
.terms-of-use-section .terms-content .amendments-section {
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 168, 213, 0.2);
  margin-top: 48px;
}
.terms-of-use-section .terms-content .amendments-section p {
  margin: 0;
}

@media (max-width: 1024px) {
  .terms-of-use-section .terms-content .terms-section-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .terms-of-use-section .terms-content .terms-intro,
  .terms-of-use-section .terms-content .amendments-section {
    padding: 16px;
  }
  .terms-of-use-section .terms-content .terms-section-title {
    font-size: 20px !important;
    margin-bottom: 16px;
  }
  .terms-of-use-section .terms-content p {
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .terms-of-use-section .terms-content .terms-list li {
    font-size: 18px !important;
    line-height: 29px !important;
    margin-bottom: 12px;
    padding-left: 24px;
  }
}
@media (max-width: 480px) {
  .terms-of-use-section .terms-content .terms-section-title {
    font-size: 18px;
  }
  .terms-of-use-section .terms-content .terms-list li {
    font-size: 13px;
    line-height: 22px;
  }
  .terms-of-use-section .terms-content .intro-text,
  .terms-of-use-section .terms-content p {
    font-size: 14px;
  }
}
.cookie-policy-section {
  background: #f8fbfd;
}
.cookie-policy-section .policy-content {
  font-family: var(--body-font);
  color: var(--text-dark);
}
.cookie-policy-section .policy-content .policy-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out forwards;
}
.cookie-policy-section .policy-content .policy-section:nth-child(1) {
  animation-delay: 0.1s;
}
.cookie-policy-section .policy-content .policy-section:nth-child(2) {
  animation-delay: 0.2s;
}
.cookie-policy-section .policy-content .policy-section:nth-child(3) {
  animation-delay: 0.3s;
}
.cookie-policy-section .policy-content .policy-section:nth-child(4) {
  animation-delay: 0.4s;
}
.cookie-policy-section .policy-content .policy-section:nth-child(5) {
  animation-delay: 0.5s;
}
.cookie-policy-section .policy-content .policy-section p {
  font-size: 21px;
  line-height: 1.5;
  margin: 16px 0;
  color: var(--text-dark);
}
.cookie-policy-section .policy-content .policy-section p strong {
  color: var(--sub-color);
  font-weight: 700;
}
.cookie-policy-section .policy-content .policy-section-title {
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--main-color);
  display: inline-block;
}
.cookie-policy-section .policy-content .policy-section-title:first-of-type {
  margin-top: 0;
}
.cookie-policy-section .policy-content .policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}
.cookie-policy-section .policy-content .policy-list li {
  font-size: 21px;
  line-height: 2;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  transition: var(--smooth);
}
.cookie-policy-section .policy-content .policy-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 21px;
  line-height: 2;
}
.cookie-policy-section .policy-content .policy-list li:hover {
  padding-left: 32px;
  color: var(--sub-color);
}
.cookie-policy-section .policy-content .policy-list li strong {
  color: var(--sub-color);
  font-weight: 700;
}
.cookie-policy-section .policy-content .policy-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 24px 0;
}
.cookie-policy-section .policy-content .policy-table thead {
  background: linear-gradient(135deg, var(--sub-color) 0%, #1a8cb8 100%);
}
.cookie-policy-section .policy-content .policy-table thead tr th {
  padding: 18px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-policy-section .policy-content .policy-table thead tr th:last-child {
  border-right: none;
}
.cookie-policy-section .policy-content .policy-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: var(--smooth);
}
.cookie-policy-section .policy-content .policy-table tbody tr:hover {
  background: #f8fbfd;
}
.cookie-policy-section .policy-content .policy-table tbody tr:last-child {
  border-bottom: none;
}
.cookie-policy-section .policy-content .policy-table tbody tr td {
  padding: 16px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-dark);
  border-right: 1px solid #e0e0e0;
}
.cookie-policy-section .policy-content .policy-table tbody tr td:last-child {
  border-right: none;
  text-align: center;
}
.cookie-policy-section .policy-content .policy-table tbody tr td strong {
  color: var(--sub-color);
  font-weight: 700;
}
.cookie-policy-section .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  transition: var(--smooth);
}
.cookie-policy-section .badge.badge-primary {
  background: linear-gradient(135deg, var(--sub-color) 0%, #1a8cb8 100%);
  color: #fff;
}
.cookie-policy-section .badge.badge-secondary {
  background: linear-gradient(135deg, var(--main-color) 0%, #FFD580 100%);
  color: #fff;
}

@media (max-width: 1024px) {
  .cookie-policy-section .policy-content .policy-section-title {
    font-size: 24px;
  }
  .cookie-policy-section .policy-content .policy-table {
    font-size: 14px;
  }
  .cookie-policy-section .policy-content .policy-table thead th,
  .cookie-policy-section .policy-content .policy-table tbody td {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .cookie-policy-section .policy-content .policy-section-title {
    font-size: 20px !important;
    margin-bottom: 16px;
  }
  .cookie-policy-section .policy-content p {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .cookie-policy-section .policy-content .policy-list li {
    font-size: 18px !important;
    line-height: 29px !important;
    margin-bottom: 12px;
    padding-left: 24px;
  }
  .cookie-policy-section .policy-content .policy-table {
    font-size: 18px !important;
    margin: 16px 0;
  }
  .cookie-policy-section .policy-content .policy-table thead th {
    padding: 12px 8px;
    font-size: 18px !important;
  }
  .cookie-policy-section .policy-content .policy-table tbody tr td {
    padding: 12px 8px;
    font-size: 18px !important;
  }
  .cookie-policy-section .policy-content .badge {
    padding: 4px 8px;
    font-size: 16px !important;
  }
}
@media (max-width: 480px) {
  .cookie-policy-section .policy-content .policy-section-title {
    font-size: 18px;
  }
  .cookie-policy-section .policy-content .policy-list li {
    font-size: 13px;
    line-height: 22px;
  }
  .cookie-policy-section .policy-content .policy-table {
    overflow-x: auto;
    font-size: 11px;
  }
  .cookie-policy-section .policy-content .policy-table thead th,
  .cookie-policy-section .policy-content .policy-table tbody td {
    padding: 8px;
    font-size: 11px;
  }
}
.complaint-form-section {
  background: #f8fbfd;
}
.complaint-form-section .form-intro {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out forwards;
}
.complaint-form-section .form-intro .form-section-title {
  font-family: var(--head-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.complaint-form-section .form-intro .form-intro-text {
  font-size: 16px;
  line-height: 28px;
  color: var(--grey-color);
  max-width: 600px;
  margin: 0 auto;
}
.complaint-form-section .complaint-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}
.complaint-form-section .complaint-form .form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(6, 27, 52, 0.1);
}
.complaint-form-section .complaint-form .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.complaint-form-section .complaint-form .form-section.form-actions {
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.complaint-form-section .complaint-form .form-subsection-title {
  font-family: var(--head-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--main-color);
}
.complaint-form-section .complaint-form .form-group {
  margin-bottom: 0;
}
.complaint-form-section .complaint-form .form-label {
  display: block;
  font-family: var(--head-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.complaint-form-section .complaint-form .form-label .required {
  color: #E74C3C;
  margin-left: 2px;
}
.complaint-form-section .complaint-form .form-label .optional {
  color: var(--grey-color);
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}
.complaint-form-section .complaint-form .form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-dark);
  background-color: #fff;
  border: 1px solid #D0D8E0;
  border-radius: 6px;
  transition: var(--smooth);
  font-family: var(--body-font);
}
.complaint-form-section .complaint-form .form-control:focus {
  outline: none;
  border-color: var(--sub-color);
  box-shadow: 0 0 0 3px rgba(38, 168, 213, 0.1);
  background-color: #f8fbfd;
}
.complaint-form-section .complaint-form .form-control::-moz-placeholder {
  color: #999;
}
.complaint-form-section .complaint-form .form-control::placeholder {
  color: #999;
}
.complaint-form-section .complaint-form .form-control:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.complaint-form-section .complaint-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
  font-family: var(--body-font);
}
.complaint-form-section .complaint-form .form-helper-text {
  display: block;
  font-size: 13px;
  line-height: 20px;
  color: var(--grey-color);
  margin-top: 8px;
  font-style: italic;
}
.complaint-form-section .complaint-form .phone-input-group {
  display: flex;
  gap: 8px;
}
.complaint-form-section .complaint-form .phone-input-group .phone-country-code {
  flex: 0 0 120px;
  padding: 12px 12px;
  font-size: 14px;
  border: 1px solid #D0D8E0;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  transition: var(--smooth);
}
.complaint-form-section .complaint-form .phone-input-group .phone-country-code:focus {
  outline: none;
  border-color: var(--sub-color);
  box-shadow: 0 0 0 3px rgba(38, 168, 213, 0.1);
}
.complaint-form-section .complaint-form .phone-input-group .form-control {
  flex: 1;
}
.complaint-form-section .complaint-form .file-upload-wrapper {
  display: block;
  border: 2px dashed #26A8D5;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
}
.complaint-form-section .complaint-form .file-upload-wrapper input {
  display: none;
}
.complaint-form-section .complaint-form .radio-group {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.complaint-form-section .complaint-form .radio-group .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.complaint-form-section .complaint-form .radio-group .form-check .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--sub-color);
}
.complaint-form-section .complaint-form .radio-group .form-check .form-check-label {
  font-size: 15px;
  line-height: 24px;
  color: var(--text-dark);
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.complaint-form-section .complaint-form .recaptcha-wrapper {
  display: inline-block;
  margin: 24px 0;
}
.complaint-form-section .complaint-form .form-actions {
  text-align: center;
  padding-top: 32px;
}
.complaint-form-section .complaint-form .form-actions .primary-btn {
  min-width: 250px;
}

.complaint-procedure-section {
  background: #fff;
}
.complaint-procedure-section .procedure-content {
  font-family: var(--body-font);
  color: var(--text-dark);
}
.complaint-procedure-section .procedure-content .procedure-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out forwards;
}
.complaint-procedure-section .procedure-content .procedure-section:nth-child(1) {
  animation-delay: 0.1s;
}
.complaint-procedure-section .procedure-content .procedure-section:nth-child(2) {
  animation-delay: 0.2s;
}
.complaint-procedure-section .procedure-content .procedure-section:nth-child(3) {
  animation-delay: 0.3s;
}
.complaint-procedure-section .procedure-content .procedure-section:nth-child(4) {
  animation-delay: 0.4s;
}
.complaint-procedure-section .procedure-content .procedure-section:nth-child(5) {
  animation-delay: 0.5s;
}
.complaint-procedure-section .procedure-content .procedure-section p {
  font-size: 21px;
  line-height: 1.5;
  margin: 16px 0;
  color: var(--text-dark);
}
.complaint-procedure-section .procedure-content .procedure-section p strong {
  color: var(--sub-color);
  font-weight: 700;
}
.complaint-procedure-section .procedure-content .procedure-section-title {
  font-family: var(--head-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--main-color);
  display: inline-block;
}
.complaint-procedure-section .procedure-content .procedure-section-title:first-of-type {
  margin-top: 0;
}
.complaint-procedure-section .procedure-content .complaint-highlight-card {
  background: linear-gradient(180deg, rgba(38, 168, 213, 0.1) 0%, rgba(244, 164, 58, 0.1) 100%);
  border: 1px solid rgba(38, 168, 213, 0.16);
  border-radius: 20px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: 0 12px 30px rgba(38, 168, 213, 0.08);
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--main-color), var(--sub-color));
  color: #fff;
  font-family: var(--head-font);
  font-weight: 700;
  font-size: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__text {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__details {
  display: grid;
  gap: 14px;
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__item span {
  font-weight: 600;
  color: var(--text-dark);
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__item a, .complaint-procedure-section .procedure-content .complaint-highlight-card__item strong {
  color: var(--sub-color);
  font-weight: 700;
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__item a {
  text-decoration: none;
}
.complaint-procedure-section .procedure-content .complaint-highlight-card__item a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .complaint-procedure-section .procedure-content .complaint-highlight-card__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.complaint-procedure-section .procedure-content .procedure-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
}
.complaint-procedure-section .procedure-content .procedure-list li {
  font-size: 21px;
  line-height: 2;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  transition: var(--smooth);
}
.complaint-procedure-section .procedure-content .procedure-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 21px;
  line-height: 2;
}
.complaint-procedure-section .procedure-content .procedure-list li:hover {
  padding-left: 32px;
  color: var(--sub-color);
}
.complaint-procedure-section .procedure-content .procedure-list li strong {
  color: var(--sub-color);
  font-weight: 700;
}
.complaint-procedure-section .procedure-content .procedure-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 24px 0;
}
.complaint-procedure-section .procedure-content .procedure-table thead {
  background: linear-gradient(135deg, var(--sub-color) 0%, #1a8cb8 100%);
}
.complaint-procedure-section .procedure-content .procedure-table thead tr th {
  padding: 18px 16px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.complaint-procedure-section .procedure-content .procedure-table thead tr th:last-child {
  border-right: none;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: var(--smooth);
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr:hover {
  background: #f8fbfd;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr:last-child {
  border-bottom: none;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td {
  padding: 16px;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-dark);
  border-right: 1px solid #e0e0e0;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td:last-child {
  border-right: none;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td .table-link {
  color: var(--sub-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: var(--smooth);
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td .table-link:hover {
  border-bottom-color: var(--sub-color);
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td small {
  display: block;
  color: var(--grey-color);
  font-size: 13px;
  margin-top: 4px;
}
.complaint-procedure-section .procedure-content .procedure-table tbody tr td strong {
  color: var(--text-dark);
  font-weight: 700;
}
.complaint-procedure-section .procedure-content .submission-note {
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  padding: 24px;
  border-left: 4px solid var(--sub-color);
  border-radius: 8px;
  margin: 24px 0;
}
.complaint-procedure-section .procedure-content .submission-note p {
  margin: 0 0 16px 0;
  font-weight: 600;
  color: var(--text-dark);
}
.complaint-procedure-section .procedure-content .submission-note .procedure-list {
  margin: 0;
}
.complaint-procedure-section .procedure-content .submission-note .procedure-list li {
  margin-bottom: 8px;
}
.complaint-procedure-section .procedure-content .submission-note .procedure-list li:last-child {
  margin-bottom: 0;
}
.complaint-procedure-section .procedure-content .sla-timeline {
  display: none;
}
.complaint-procedure-section .procedure-content .sla-table tbody tr td.sla-step-number {
  width: 60px;
  min-width: 60px;
  padding: 24px 16px !important;
  text-align: center;
  vertical-align: middle;
  /* background: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%); */
  color: #000000;
  font-family: var(--head-font);
  font-size: 24px;
  font-weight: 700;
  /* border-radius: 50%; */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.complaint-procedure-section .procedure-content .sla-table tbody tr td:not(.sla-step-number) {
  vertical-align: middle;
  padding: 24px 16px !important;
}
.complaint-procedure-section .procedure-content .sla-table tbody tr td .sla-step-title {
  font-family: var(--head-font);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}
.complaint-procedure-section .procedure-content .sla-table tbody tr td p {
  font-size: 21px;
  line-height: 1.5;
  margin: 0;
  color: var(--grey-color);
}
.complaint-procedure-section .procedure-content .sla-table tbody tr td p strong {
  color: var(--sub-color);
}
.complaint-procedure-section .procedure-content .escalation-box {
  display: none;
}

@media (max-width: 1024px) {
  .complaint-form-section .complaint-form {
    padding: 30px;
  }
  .complaint-procedure-section .procedure-content .procedure-section-title {
    font-size: 24px;
  }
  .complaint-procedure-section .procedure-content .procedure-table {
    font-size: 14px;
  }
  .complaint-procedure-section .procedure-content .procedure-table thead th,
  .complaint-procedure-section .procedure-content .procedure-table tbody td {
    padding: 12px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step {
    gap: 16px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-content .sla-step-title {
    font-size: 16px;
  }
  .complaint-procedure-section .sla-table tbody tr td.sla-step-number {
    width: 55px !important;
    height: 55px !important;
    font-size: 20px;
    padding: 20px 16px !important;
  }
}
@media (max-width: 768px) {
  .complaint-form-section .form-intro {
    margin-bottom: 32px;
  }
  .complaint-form-section .form-intro .form-section-title {
    font-size: 26px;
  }
  .complaint-form-section .form-intro .form-intro-text {
    font-size: 14px;
    line-height: 24px;
  }
  .complaint-form-section .complaint-form {
    padding: 24px;
  }
  .complaint-form-section .complaint-form .form-subsection-title {
    font-size: 18px;
  }
  .complaint-form-section .complaint-form .phone-input-group {
    flex-direction: column;
  }
  .complaint-form-section .complaint-form .phone-input-group .phone-country-code {
    flex: 1;
  }
  .complaint-form-section .complaint-form .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  .complaint-form-section .complaint-form .form-actions .primary-btn {
    min-width: auto;
    width: 100%;
  }
  .complaint-procedure-section .procedure-content .procedure-section-title {
    font-size: 20px !important;
  }
  .complaint-procedure-section .procedure-content p {
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .complaint-procedure-section .procedure-content .procedure-list li {
    font-size: 18px !important;
    line-height: 29px !important;
    padding-left: 24px;
  }
  .complaint-procedure-section .procedure-content .procedure-table {
    font-size: 18px !important;
  }
  .complaint-procedure-section .procedure-content .procedure-table thead th,
  .complaint-procedure-section .procedure-content .procedure-table tbody td {
    padding: 12px 8px;
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step {
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-content .sla-step-title {
    font-size: 18px !important;
  }
  .complaint-procedure-section .procedure-content .escalation-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .complaint-procedure-section .procedure-content .submission-note {
    padding: 16px;
  }
  .complaint-procedure-section .procedure-content .submission-note p {
    font-size: 18px !important;
    margin-bottom: 12px;
  }
  .complaint-procedure-section .procedure-content .submission-note .procedure-list li {
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .complaint-procedure-section .procedure-content .procedure-list li:before {
    font-size: 18px !important;
    line-height: 29px !important;
  }
  .complaint-procedure-section .procedure-content .sla-table tbody tr td:not(.sla-step-number) .sla-step-title {
    font-size: 18px !important;
  }
}
@media (max-width: 480px) {
  .complaint-form-section .form-intro .form-section-title {
    font-size: 22px;
  }
  .complaint-form-section .complaint-form {
    padding: 16px;
  }
  .complaint-form-section .complaint-form .form-subsection-title {
    font-size: 16px;
  }
  .complaint-form-section .complaint-form .form-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .complaint-form-section .complaint-form .row {
    margin-right: -12px;
    margin-left: -12px;
  }
  .complaint-form-section .complaint-form .row [class*=col-] {
    padding-right: 12px;
    padding-left: 12px;
  }
  .complaint-procedure-section .procedure-content .procedure-section-title {
    font-size: 18px;
  }
  .complaint-procedure-section .procedure-content .procedure-list li {
    font-size: 13px;
    line-height: 22px;
  }
  .complaint-procedure-section .procedure-content .procedure-table {
    overflow-x: auto;
    font-size: 11px;
  }
  .complaint-procedure-section .procedure-content .procedure-table thead th,
  .complaint-procedure-section .procedure-content .procedure-table tbody td {
    padding: 8px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-content .sla-step-title {
    font-size: 14px;
  }
  .complaint-procedure-section .procedure-content .sla-timeline .sla-step .sla-step-content p {
    font-size: 13px;
  }
  .complaint-procedure-section .procedure-content .sla-table tbody tr td.sla-step-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 16px;
    padding: 16px 12px !important;
  }
  .complaint-procedure-section .procedure-content .sla-table tbody tr td:not(.sla-step-number) {
    padding: 16px 12px !important;
  }
  .complaint-procedure-section .procedure-content .sla-table tbody tr td:not(.sla-step-number) .sla-step-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .complaint-procedure-section .procedure-content .sla-table tbody tr td:not(.sla-step-number) p {
    font-size: 12px;
    line-height: 20px;
  }
}
.complaint-disclaimer {
  background: linear-gradient(135deg, rgba(38, 168, 213, 0.08) 0%, rgba(244, 164, 58, 0.08) 100%);
  padding: 24px;
  border-left: 4px solid var(--sub-color);
  border-radius: 8px;
  margin-top: 24px;
}
.complaint-disclaimer p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-dark);
}
.complaint-disclaimer p strong {
  color: var(--sub-color);
  font-weight: 700;
}

.header-logo {
  height: 55px;
}/*# sourceMappingURL=waypoint.css.map */