@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");

@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Regular.woff) format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Medium.woff) format("woff");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Semibold.woff) format("woff");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url(../fonts/Gilroy-Bold.woff) format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Grifter;
  src: url(/fonts/grifterbold.otf) format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: GilroyBlack;
  src: url(/fonts/Gilroy-Black.ttf);
  font-display: swap;
}

:root {
  --font: Gilroy;
  --font-bold: 700;
  --font-semibold: 600;
  --font-medium: 500;
  --font-regular: 400;
  --primary-color: #10528b;
  --gray-color: #404040;
  --max-width: 1600px;
  --padding: 48px 5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: var(--font-medium);
  scroll-behavior: smooth;
}

.border-box {
  border: 1px solid #c6c6cd;
  border-radius: 10px;
}

/*  */

.hero-section {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
}

.hero-section h1 {
  max-width: 850px;
  font-size: 48px;
  font-family: Helvetica, sans-serif;
}

.hero-section p {
  font-size: 20px;
  margin-top: 32px;
  color: var(--gray-color);
}

.date-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
}

.date-box {
  width: fit-content;
}

.date-box span {
  font-size: 12px;
  color: var(--gray-color);
  font-weight: var(--font-semibold);
}

.date-box h5 {
  font-size: 24px;
  font-weight: var(--font-bold);
  margin-top: 8px;
}

.update-marquee-container {
  margin-top: 48px;
}

.update-marquee-wrapper {
  width: 320px;
  height: 35px;
  border-radius: 25px;
  padding: 4px;
  display: flex;
  background: linear-gradient(
    90deg,
    #11585a 0%,
    #19434e 25%,
    #192a31 50%,
    #105c5e 75%,
    #0b482e 100%
  );
  overflow: hidden;
  cursor: pointer;
}

.update-marquee-left {
  width: 80px;
  height: 100%;
  background-color: #eefdbe;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #124e1b;
}

.update-marquee-right {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track p {
  margin: 0;
  padding-right: 14px; /* spacing between repeated text */
  flex-shrink: 0;
  font-size: 14px;
  color: #fff;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-section-popup-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
}

.hero-section-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.hero-section-popup {
  width: 95%;
  max-width: 850px;
  height: 465px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-radius: 24px;
  --slide-x: 0px;
}

.hero-section-popup.active {
  display: flex;
  transition: all 0.3s ease-in-out;
  animation: heroPopupSlide 0.3s ease-in-out;
}

.hero-section-popup.from-left {
  --slide-x: -100px;
}

.hero-section-popup.from-right {
  --slide-x: 100px;
}

@keyframes heroPopupSlide {
  from {
    transform: translateX(var(--slide-x));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-section-popup-left,
.hero-section-popup-right {
  width: 50%;
  padding: 24px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

.hero-section-popup-left {
  background-color: #c8e6ff;
  align-items: center;
}

.hero-section-popup-left.new {
  background-color: #cdffc8;
  padding: 0;
  justify-content: flex-end;
}

.hero-section-popup-left.new img {
  width: 100%;
}

.notification-icon {
  transform: translateY(-45px) rotate(-40deg);
}

.hero-section-popup-right {
  justify-content: flex-start;
}

.hero-section-popup-right .update-marquee-container {
  margin-top: 24px;
}

.hero-section-popup-right h2 {
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
  margin-top: 24px;
}

.hero-section-popup-right > p {
  font-size: 16px;
  color: var(--gray-color);
  margin-top: 8px;
}

.hero-section-popup-right button {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 100px;
  height: 45px;
  background-color: transparent;
  border: 1px solid #000;
  cursor: pointer;
  margin-top: 48px;
  padding: 0 12px;
}

.popup-toggle-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.popup-toggle-buttons span {
  background-color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #eceeee;
}

.language-switcher {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  width: 200px;
  border: 1px solid #ececec;
  border-radius: 25px;
  display: flex;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 14px 14px 42px rgba(0, 0, 0, 0.1);
}

.language-switcher span,
.language-switcher a {
  display: block;
  width: 50%;
  text-align: center;
  padding: 8px 4px;
  color: var(--primary-color);
  text-decoration: none;
}

.language-switcher span {
  background-color: var(--primary-color);
  color: #fff;
}

/*  */

.what-happened {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  margin-top: 50px;
}

.what-happened-left {
  flex: 1;
}

.what-happened-left h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 24px;
}

.what-happened-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.what-happened-content p {
  font-size: 16px;
  color: var(--gray-color);
}

.what-happened-left button {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-color);
  padding: 14px 16px;
  border: 1px solid #000;
  border-radius: 100px;
  margin-top: 80px;
  cursor: pointer;
  background-color: transparent;
}

.what-happened-left button i {
  color: #000;
  font-size: 16px;
}

.what-happened-right {
  max-width: 400px;
}

.what-happened-right img {
  width: 100%;
}

/*  */

.pdf-section {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.pdf-section h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 40px;
}

.pdf-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
}

.pdf-button button {
  height: 45px;
  background-color: #d9d9d9;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  border-radius: 24px;
  padding: 0 16px;
}

.pdf-button button.active {
  background-color: #e5ecf2;
  color: var(--primary-color);
}

.pdf-section .pdf {
  max-width: 750px;
  width: 95%;
  max-height: 600px;
  overflow-y: auto;
  display: none;
  margin-top: 24px;
}

.pdf-section .pdf.active {
  display: block;
}

.pdf-section .pdf img {
  display: block;
  width: 100%;
}

/*  */

.service-restoration {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.service-restoration h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 40px;
}

.restore-banner {
  border: 1px solid #c6c6cd;
  border-radius: 8px;
  padding: 40px;
  border-left: 4px solid #22c55e;
}

.restore-banner h2 {
  font-size: 24px;
  font-weight: var(--font-semibold);
  margin-bottom: 12px;
  color: #111;
}

.restore-banner p {
  font-size: 16px;
  color: #45464d;
}

.restore-banner a {
  color: var(--primary-color);
}

.restore-content {
  color: #e5e5e5;
  line-height: 1.5;
  margin-top: 60px;
}

.restore-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #45464d;
}

.restore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-block: 60px;
}

.restore-card {
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 4px;
}

.restore-card .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #d5e3fd;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 20px;
}

.restore-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.restore-card p {
  font-size: 14px;
  color: #45464d;
}

.restore-card a {
  color: var(--primary-color);
}

.merge-box {
  background: #f9f9f9;
  border: 1px solid #e4e4e4;
  padding: 24px 30px;
  border-radius: 4px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.merge-icon {
  font-size: 18px;
}

.merge-box strong {
  color: #111;
  font-weight: var(--font-semibold);
}

.merge-box p {
  color: #45464d;
  font-size: 14px;
  line-height: 1.5;
}

.merge-box a {
  color: var(--primary-color);
}

/*  */

.about-us {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
  background-color: var(--primary-color);
  color: #fff;
}

.about-us h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 54px;
}

.about-us-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-us-content strong {
  font-weight: var(--font-bold);
}

/*  */

.news-coverage {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.news-coverage h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 40px;
}

.news-coverage ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 2rem;
  color: var(--gray-color);
}

.news-coverage ul li::marker {
  color: var(--gray-color);
}

.news-coverage ul li a {
  font-size: 16px;
  color: var(--gray-color);
}

/*  */

.about-incident {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;

  display: none;
}

.about-incident h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
}

.about-incident p {
  width: 100%;
  max-width: 800px;
  font-size: 16px;
  color: var(--gray-color);
  margin-top: 24px;
}

.about-incident p strong {
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.about-incident ul {
  font-size: 15px;
  color: var(--gray-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-left: 1.5rem;
}

.about-incident .note {
  display: block;
  width: 100%;
  max-width: 700px;
  color: var(--gray-color);
  opacity: 80%;
  margin-top: 36px;
}

.about-incident .border-box {
  padding: 64px;
}

/*  */

.our-plan {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.our-plan h1 {
  width: 100%;
  max-width: 800px;
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
  margin-bottom: 40px;
}

.our-plan-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.our-plan-content p {
  font-size: 16px;
  color: var(--gray-color);
}

.info {
  margin-top: 24px;
  border-radius: 6px;
  padding: 24px;
  background-color: #d5e3fd;
  font-size: 14px;
}

.info-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  color: #008cc7;
}

.info-header i {
  font-size: 16px;
}

.info p {
  color: #57657b;
  margin: 8px 0 0 28px;
}

.new-plan-features {
  width: 100%;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.new-plan-features-card {
  width: 100%;
  padding: 24px;
  background-color: #f7f9fb;
  border-radius: 6px;
}

.new-plan-features-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.new-plan-features-header i {
  font-size: 18px;
}

.new-plan-features-header h3 {
  font-size: 18px;
  font-weight: var(--font-bold);
}

.new-plan-features-body {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #c6c6cd;
}

.new-plan-features-body p {
  font-size: 12px;
  color: var(--gray-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.new-plan-features-body ul {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 1rem;
}

.new-plan-features-body-v2 {
  margin-top: 16px;
}

.new-plan-features-body-v2 p {
  font-size: 15px;
  color: var(--gray-color);
}

.new-plan-features-body-v2 ul {
  list-style: none;
  font-size: 14px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.new-plan-features-body-v2 ul li i {
  margin-right: 4px;
}

.new-plan-features-footer {
  width: 100%;
  margin-top: 16px;
}

.new-plan-features-footer p {
  font-size: 12px;
  color: var(--gray-color);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.new-plan-features-footer span {
  font-size: 14px;
}

.important-note {
  width: 100%;
  padding: 24px;
  margin-top: 36px;
}

.important-note h2 {
  font-size: 24px;
  font-family: Helvetica, sans-serif;
  margin-bottom: 40px;
}

.important-note-content {
  width: 100%;
  display: flex;
  gap: 24px;
}

.important-note-content p {
  font-size: 16px;
  color: var(--gray-color);
  flex: 1;
}

.important-note-content button {
  width: fit-content;
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary-color);
  padding: 0 12px;
  border: 1px solid #000;
  border-radius: 100px;
  background-color: transparent;
}

/*  */

.contact-form {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.contact-form .border-box {
  background-color: #f5f5f5;
  padding: 96px 24px 0 24px;
}

.contact-form h1 {
  font-size: 28px;
  text-align: center;
  font-weight: var(--font-bold);
  margin-bottom: 16px;
}

.contact-form h1 span {
  font-size: 24px;
  font-weight: var(--font-medium);
}

.contact-form p {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-color);
  text-align: center;
}

.form-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 48px;
  padding: 32px 24px;
  background: linear-gradient(180deg, #0d5ca8, #0a4d8f);
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.form-box h3 {
  font-size: 28px;
  text-align: center;
}

.form-box p {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.form-group {
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.input-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 0 18px;
  height: 48px;
  transition: 0.3s;
}
.input-box:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.input-box i {
  font-size: 20px;
  color: #6f8fb0;
  margin-right: 12px;
}
.input-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  font-family: inherit;
}
.input-box input::placeholder {
  color: #9b9b9b;
}
.submit-btn {
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px 0 20px 0;
}

/*  */

.mail-updates {
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.mail-updates h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
}

.mail-updates h1 span {
  color: #777;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
}

.mail-update-images {
  margin-top: 48px;
  /* max-height: 500px;
  overflow-y: auto; */
}

.mail-update-images img {
  max-width: 100%;
  cursor: zoom-in;
}

.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

.image-popup img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-out;
}

/*  */

.sla-section {
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.sla-section img {
  max-width: 80px;
}

.sla-section h1 {
  font-size: 32px;
  font-weight: var(--font-semibold);
}

.sla-section p {
  max-width: 300px;
  font-size: 16px;
  color: var(--gray-color);
}

.sla-section button {
  padding: 16px 40px;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 48px 0 24px 0;
}

.sla-section button i {
  font-size: 18px;
}

.sla-section p:nth-child(5) {
  max-width: 500px;
  font-size: 14px;
  color: #76777d;
}

/*  */

.contact-us {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  margin-bottom: 48px;
  padding: var(--padding);
  display: flex;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

.contact-us-left,
.contact-us-right {
  width: 50%;
}

.contact-us h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-details i {
  margin-right: 6px;
}

.address-info-details p {
  font-size: 15px;
}

.address-info-details span {
  margin-block: 12px 28px;
  display: block;
}

.address-info-details span a {
  color: #fff;
}

/*  */

.setup-videos {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.setup-videos h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
}

.setup-videos p {
  width: 100%;
  max-width: 850px;
  font-size: 16px;
  color: var(--gray-color);
  margin-top: 24px;
}

.setup-videos p strong {
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.video-container {
  width: 100%;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.videos-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 10px;
  transition: 0.3s;
  background-color: #f7f7f7;
  overflow: hidden;
}

.videos-card img {
  width: 100%;
}

.videos-card span {
  width: fit-content;
  display: block;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--primary-color);
  margin: 0 12px;
  background-color: #e9edf1;
}

.videos-card h3 {
  width: calc(100% - 24px);
  font-size: 16px;
  font-weight: var(--font-bold);
  margin: 0 12px;
}

.videos-card p {
  width: calc(100% - 24px);
  font-size: 14px;
  color: var(--gray-color);
  margin-top: 0;
  margin: 0 12px;
}

.videos-card a {
  width: calc(100% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 30px;
  border: 1px solid #c6c6cd;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  margin: 16px 12px 12px 12px;
}

/*  */
.import-format {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--padding);
  margin: 0 auto;
}

.import-format-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-color);
}

.import-format-header h1 {
  font-size: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: var(--font-bold);
}

.import-format-header p {
  width: 100%;
  max-width: 850px;
  font-size: 16px;
  color: var(--gray-color);
}

.file-search {
  width: 220px;
  padding: 12px 16px;
  margin-bottom: 20px;
  background-color: #f7f9fb;
  border: 1px solid #c3d4e2;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
}

.file-search::placeholder {
  color: var(--primary-color);
}

.import-format-info {
  display: flex;
  align-items: center;
  gap: 36px;
}

.import-format-info span {
  font-size: 14px;
}

.import-format-files-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: var(--font-semibold);
  padding: 18px;
  margin-top: 24px;
  background-color: #f2f4f6;
  color: #45464d;
  border: 1px solid #c3d4e2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-top: 64px;
}

.import-format-files-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.import-format-files {
  width: 100%;
  overflow-y: auto;
}

.import-file-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 1px solid #c3d4e2;
  border-top: none;
  overflow-x: hidden;
}

.import-file-card:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.import-file-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-icon {
  width: 80px;
  color: var(--primary-color);
}

.file-icon i {
  font-size: 20px;
}

.import-file-card h4 {
  font-size: 14px;
  font-weight: var(--font-semibold);
}

.download-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  padding: 10px 20px;
}

.download-btn i {
  font-size: 15px;
}

@media screen and (min-width: 1024px) {
  .header-right-mobile {
    display: none;
  }

  .new-plan-features-card.long {
    grid-column: span 2;
  }

  .translate-btn {
    margin-top: 24px;
  }
}

@media screen and (max-width: 1024px) {
  header {
    padding: 24px 5%;
  }
  header img {
    max-width: 120px;
  }

  .header-right {
    display: none;
  }

  .translate-btn {
    font-size: 14px;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .what-happened {
    flex-direction: column-reverse;
    margin-top: 0px;
  }

  .new-plan-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .sla-section {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .news-coverage h1,
  .about-us h1,
  .mail-updates h1,
  .about-incident h1,
  .our-plan h1,
  .sla-section h1,
  .service-restoration h1 {
    font-size: 24px;
  }

  .about-incident .border-box {
    padding: 24px;
  }

  .important-note-content {
    flex-direction: column;
  }

  .file-search {
    width: 100%;
    position: relative;
    transform: none;
    margin-top: 12px;
  }

  .file-icon {
    width: auto;
  }

  .contact-form h1 span {
    font-size: 18px;
  }

  .contact-form .border-box {
    padding: 48px 24px 0 24px;
  }

  .contact-us {
    flex-direction: column;
    gap: 48px;
  }

  .contact-us-left,
  .contact-us-right {
    width: 100%;
  }

  .hero-section-popup {
    flex-direction: column;
  }
  .hero-section-popup-left {
    display: none;
  }

  .hero-section-popup-right {
    width: 100%;
  }
  .hero-section-popup-right h2 {
    font-size: 42px;
  }

  .update-marquee-wrapper {
    width: 290px;
  }

  .restore-banner {
    padding: 24px;
  }

  .restore-banner h2 {
    font-size: 22px;
  }

  .restore-cards {
    grid-template-columns: 1fr;
  }

  .merge-box {
    padding: 20px;
  }

  .popup-toggle-buttons {
    /* bottom: 100px; */
  }
}

@media screen and (max-width: 400px) {
  .import-file-card,
  .import-format-files-header {
    padding: 16px;
  }

  .import-file-card h4 {
    max-width: 150px;
    overflow: hidden;
  }
}

@media print {
  header {
    padding: 24px;
  }

  .header-right,
  .header-right-mobile {
    display: none;
  }

  .hero-section h1 {
    font-size: 30px;
  }

  .what-happened {
    flex-direction: column-reverse;
  }

  .sla-section {
    gap: 12px;
  }

  .news-coverage h1,
  .about-us h1,
  .mail-updates h1,
  .about-incident h1,
  .our-plan h1,
  .sla-section h1 {
    font-size: 24px;
  }

  .new-plan-features-card.long {
    grid-column: span 1;
  }

  .new-plan-features {
    grid-template-columns: 1fr;
  }

  .about-incident .border-box {
    padding: 24px;
  }

  .important-note-content {
    flex-direction: column;
  }

  .contact-form h1 span {
    font-size: 18px;
  }

  .contact-form .border-box {
    padding: 48px 24px 0 24px;
  }

  /* Recommended print fixes */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .new-plan-features-card,
  .border-box,
  section {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .file-search {
    width: 100%;
    position: relative;
    transform: none;
    margin-top: 12px;
  }

  .contact-us {
    display: none;
  }
}
