/*!
Theme Name: f6rdnb
Theme URI: #
Version: 3.5.9
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: f6rdnb
*/

:root {
  --text-color: #2F4F4F;
  --heading-color: #FF69B4;
  --primary-btn-bg: #00BFFF;
  --secondary-btn-bg: #FFDAB9;
  --primary-btn-color: #FFFFFF;
  --secondary-btn-color: #2F4F4F;

  --header-bg-color: #F0FFF0;
  --header-text-color: #FF69B4;
  --header-border: 1px solid #00BFFF;

  --footer-bg-color: #4682B4;
  --footer-text-color: #FFFFFF;
  --footer-direction: row-reverse;
  --footer-justify: space-between;

  --table-bg-color: #E6E6FA;
  --table-border-color: #FF69B4;
  --table-text-color: #0c0c3c;

  --body-bg-color: #F0FFF0;
  --card-bg-color: #ffffff;
  --card-text-color: #2F4F4F;
  --card-border: {{card-border}};
  --card-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

  --banner-direction: center;
  --banner-column: 71%;
  --banner-padding: 151.2px;
  --banner-border: 1px solid #00BFFF;
  --banner-bg-color: #F0FFF0;
  --banner-text-color: #000000;

  --container-max-width: 1179px;
  --container-padding: 0 15px;
  --border-radius: 18px;
  --py: 19px;
  --py-2: 56px;
  --py-3: 73px;
  --text-align: center;
  --mb: 21px;
  --fz-1: 30.24px;
  --fz-2: 25.2px;
  --fz-3: 21px;
  --logo-width: 158px;
  --menu-margin: 0 0 0 auto;

  --animation-duration: 685ms;
  --animation-type: linear;
  --animation-effect: fadeInUp;

  --contrast-bg-color: #2b2b2b;
  --contrast-text-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Nata Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--body-bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 650px;
  width: auto;
}

ul, ol {
  margin: 0;
}

.wrap-rwnozbgft {
  width: var(--container-max-width);
  max-width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
}


      .head-jlnvboqxm {
        background-color: var(--header-bg-color);
        color: var(--header-text-color);
        padding: 0;
        border-bottom: var(--header-border);
      }

      .h-gtxbpkoer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--mb);
      }

      .header-rtgaqcwnp {
        display: flex;
        gap: var(--mb);
        list-style: none;
        margin: var(--menu-margin);
        padding: 0;
      }

      .h-hkjtevosz {
        color: var(--header-text-color);
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 8px 20px;
        border-radius: var(--border-radius);
        border: 1px solid #7fdfff;
      }

      .h-hkjtevosz:hover {
        color: var(--primary-btn-bg);
      }


      .h-xkwrjbief {
        display: flex;
        gap: 10px;
      }

      .top-avkgbdetp {
        display: none;
      }
    

@media (max-width: 1024px) {
  .header-rtgaqcwnp {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-bg-color);
    z-index: 100;
    padding: var(--py) 15px;
    display: block;
  }

  .h-hkjtevosz {
    padding: 10px 0;
    display: block;
  }

  .header-rtgaqcwnp.active {
    opacity: 1;
    visibility: visible;
  }

  .top-avkgbdetp {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 30px;
    width: 30px;
    z-index: 101;
    padding: 2.5px 0px;
  }

  .top-avkgbdetp span {
    display: block;
    height: 5px;
    width: 30px;
    background: var(--header-text-color);
    border-radius: 30px;
    transition: 0.3s;
  }

  .top-avkgbdetp.active span:first-child {
    transform: translateY(4px) rotate(45deg)
  }

  .top-avkgbdetp.active span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg)
  }
}

.logo-iagwrvfel {
  width: var(--logo-width);
  font-weight: 800;
  font-size: 24px;
  display: block;
}

.logo-iagwrvfel img {
  max-height: 80px;
}

.primary-ltjrpxkuo,
.secondary-fhuqrgmzx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.primary-ltjrpxkuo {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.primary-ltjrpxkuo:hover {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.secondary-fhuqrgmzx {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-color);
}

.secondary-fhuqrgmzx:hover {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-color);
}

.bottom-fmahrpqkl{
  position: relative;
}
.bottom-fmahrpqkl * {
  z-index: 1;
  position: relative;
}


      .content-cbaqihzps > .wp-block-image {
        margin: 2.5rem auto;
        display: block;
        position: relative;
        padding: 10px;
        background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
        border-radius: var(--border-radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all .3s ease;
        overflow: hidden;
        width: max-content;
        max-width: 100%;
      }

      .content-cbaqihzps > .wp-block-image:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }

      .content-cbaqihzps > .wp-block-image img {
        border-radius: var(--border-radius);
        max-width: 100%;
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
      }
    


    .partners-thkyariop {
      margin: 0 auto 0;
      max-width: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px 35px;
      background: rgb(from var(--table-bg-color) r g b / 0.5);
      border-radius: var(--border-radius);
      padding: 15px;
      box-sizing: border-box;
      margin-bottom: var(--mb);
    }

    .partners-thkyariop a {
      color: var(--table-text-color);
      text-decoration: none;
      text-transform: capitalize;
      transition: all .3s ease;
    }

    .partners-thkyariop a:hover {
      opacity: .7;
    }

    .lks__title-lqomjznuw {
      font-size: var(--fz-2);
      font-weight: bold;
      color: var(--heading-color);
      margin-bottom: var(--mb);
    }
    


    .bottom-fmahrpqkl {
      position: relative;
      margin-top: 128px;
      padding: 0 24px 50px;
      overflow: hidden;
      background: linear-gradient(to bottom, #568fbd 0%, #294d6a 40%, #0d1821 60%);
    }

    .bottom-fmahrpqkl::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, var(--primary-btn-bg) 50%, transparent 100%);
    }

    .f-bjhmkezaw {
      max-width: 1536px;
      margin: 0 auto;
    }

    .f-cqxyfhwrs {
      position: relative;
    }

    .bot-leycjrwka {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 32px;
      margin: 0;
      margin-bottom: 50px;
      list-style: none;
      padding: 50px 0 0 0;
    }

    .bot-xyzqrfvjm {
      color: var(--footer-text-color);
      opacity: 0.6;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.05em;
      transition: color 0.3s ease, opacity 0.3s ease;
    }

    .bot-xyzqrfvjm:hover {
      color: var(--primary-btn-bg);
      opacity: 1;
    }

    .f-hivkdctjf {
      width: 100%;
      height: 1px;
      margin: 24px 0;
      background: linear-gradient(to right, transparent 0%, var(--primary-btn-bg) 30%, transparent 100%);
    }

    .f-cdxgtpubq {
      text-align: center;
      font-size: 12px;
      color: var(--footer-text-color);
      opacity: 0.3;
      letter-spacing: 0.1em;
      margin: 0;
    }

    @media (max-width: 768px) {
      .bottom-fmahrpqkl {
        margin-top: 80px;
        padding: 0 15px 30px 15px;
      }

      .bot-leycjrwka {
        gap: 24px;
      }
    }
    



.bot-leycjrwka li:empty {
  display: none;
}

.ban-bdqaglwzj {
  text-align: var(--banner-direction);
  color: var(--banner-text-color);
  position: relative;
  overflow: hidden;
}

/*
.ban-bdqaglwzj {
  text-align: var(--banner-direction);
  padding: var(--banner-padding) 0;
  background-color: var(--banner-bg-color);
  color: var(--banner-text-color);
  border-bottom: var(--banner-border);
  position: relative;
  overflow: hidden;
}

.ban-bdqaglwzj svg {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  z-index: 0;
}

.hero-qmfdkhbxg{
  display: flex;
  justify-content: var(--banner-direction);
  align-items: center;
  gap: var(--mb);
}

.ban-btcgxseyj {
  width: var(--banner-column);
  animation: var(--animation-effect) var(--animation-duration) var(--animation-type);
  animation-fill-mode: both;
}
  */

h1 {
  font-size: var(--fz-1);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: 0;
}

h2 {
  color: var(--heading-color);
  font-size: var(--fz-2);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: var(--py-2);
}

h3 {
  color: var(--heading-color);
  font-size: var(--fz-3);
  margin-bottom: var(--mb);
  font-weight: 700;
  margin-top: 0;
}

.tb-rnkxadtly{
  overflow-x: auto;
  width: 100%;
}

.content-cbaqihzps {
  padding: var(--py-2) 0;
  text-align: var(--text-align);
}

.content-cbaqihzps p {
  margin-top: 0;
  margin-bottom: var(--mb);
}

.content-cbaqihzps ul {
  width: auto;
  margin-bottom: var(--mb);
  max-width: 100%;
  list-style-position: inside;
}

.content-cbaqihzps ul {
  list-style: none;
}

.content-cbaqihzps ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: var(--text-align);
}

.content-cbaqihzps ul li::before {
  content: "";
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-btn-bg);
  border-radius: 50%;
}


    .content-cbaqihzps ol {
      counter-reset: list-counter;
      list-style: none;
      padding-left: 0;
      margin: 1.5rem 0;
      width: max-content;
      max-width: 100%;
      text-align: left;
      display: inline-block;
    }

    .content-cbaqihzps ol li {
      counter-increment: list-counter;
      position: relative;
      padding-left: 3rem;
      margin-bottom: 1rem;
      line-height: 1.6;
      color: var(--text-color);
    }

    .content-cbaqihzps ol li::before {
      content: counter(list-counter);
      position: absolute;
      left: 0;
      top: 0;
      background: linear-gradient(135deg, #00bfff 0%, #4dd2ff 100%);
      color: white;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.875rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    


      .aioseo-breadcrumbs {
        margin: 1rem 0;
        padding: 0.5rem 0;
        font-size: 0.875rem;
      }

      .aioseo-breadcrumb {
        display: inline-block;
      }

      .aioseo-breadcrumb a {
        color: #00BFFF;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.2s ease;
      }

      .aioseo-breadcrumb a:hover {
        opacity: 1;
      }

      .aioseo-breadcrumb:not(:has(a)) {
        color: var(--text-color);
        opacity: 0.6;
      }

      .aioseo-breadcrumb-separator {
        color: var(--text-color);
        opacity: 0.4;
        margin: 0 0.5rem;
      }
    


      .content-cbaqihzps table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: var(--mb);
        background-color: var(--table-bg-color);
        color: var(--table-text-color);
        border-radius: var(--border-radius);
        border: 1px solid rgba(0,191,255,0.3);
        overflow: hidden;
      }

      .content-cbaqihzps table thead tr {
        border-bottom: 1px solid rgba(0,191,255,0.3);
      }

      .content-cbaqihzps table th {
        padding: 17px 29px;
        font-weight: normal;
        font-size: 14px;
        color: #00bfff;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border: none;
      }

      .content-cbaqihzps table tbody tr {
        border-bottom: 1px solid rgba(0,191,255,0.1);
        transition: all 0.2s ease;
      }

      .content-cbaqihzps table tbody tr:last-child {
        border-bottom: none;
      }

      .content-cbaqihzps table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.05);
      }

      .content-cbaqihzps table tbody tr:hover td:first-child {
        color: #00bfff;
      }

      .content-cbaqihzps table td {
        padding: 17px 26px;
        font-size: 16px;
        color: var(--table-text-color);
        border: none;
        transition: color 0.2s ease;
      }

      .content-cbaqihzps table td:first-child {
        font-weight: normal;
      }
    

.content-cbaqihzps img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: var(--mb);
  border-radius: var(--border-radius);
}

.post-vdwjkmpfs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-iljoeubft {
  background-color: var(--table-bg-color);
  padding: 20px;
  border-radius: 10px;
}



      .cols-pwmvgyret {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin: var(--py-2) 0;
        align-items: center;
      }

      .cols-pwmvgyret .col-iuseofqbz:first-child {
        order: 1;
      }

      .cols-pwmvgyret .col-iuseofqbz:last-child {
        order: 2;
        padding-left: 2rem;
      }

      .cols-pwmvgyret h2 {
        margin-top: 0;
        color: var(--primary-btn-bg);
        position: relative;
        padding-bottom: 1rem;
      }

      .cols-pwmvgyret h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 3rem;
        height: 3px;
        background: linear-gradient(90deg, #00bfff 0%, #66d9ff 100%);
        border-radius: 2px;
      }

      .cols-pwmvgyret figure {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }

      .cols-pwmvgyret figure img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        border-radius: var(--border-radius);
      }

      .cols-pwmvgyret figure:hover img {
        transform: scale(1.05);
      }

      @media (max-width: 1024px) {
        .cols-pwmvgyret {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .cols-pwmvgyret .col-iuseofqbz:first-child {
          order: 1;
        }

        .cols-pwmvgyret .col-iuseofqbz:last-child {
          order: 2;
          padding-right: 0;
        }
      }
    

.tb-juhkoslzw {
  background: rgb(from var(--table-bg-color) r g b / 0.5);
  border-radius: var(--border-radius);
  padding: var(--py-3);
  margin: var(--py-2) auto;
  width: max-content;
  max-width: 100%;
}

.tb-juhkoslzw p,
.tb-juhkoslzw h2 {
  max-width: 1000px;
  margin: 0 auto var(--mb);
}

.tb-juhkoslzw table {
  margin: 0 auto;
  border-radius: var(--border-radius);
  border: 0;
  max-width: 1000px;
}

.tb-juhkoslzw table td,
.tb-juhkoslzw table th {
  border: 0;
}

.tb-juhkoslzw table tr {
  border-bottom: 1px solid var(--table-border-color);
}

.tb-juhkoslzw tr:last-child {
  border-bottom: 0;
}

.tb-juhkoslzw h2 {
  margin-top: 0;
}

/*
.row-oawqnixuk {
  border: var(--card-border);
  background-color: var(--card-bg-color);
  color: var(--card-text-color);
  box-shadow: var(--card-shadow);
  padding: var(--py);
  border-radius: var(--border-radius);
}
  */

.contrast-ewkhqdflr {
  position: relative;
  border-radius: var(--border-radius);
  color: var(--contrast-text-color);
  padding: var(--py-2);
  margin-top: var(--py-2);
  margin-bottom: var(--py-2);
}


    .contrast-ewkhqdflr{
      background: linear-gradient(135deg, #2b2b2b 0%, #454545 100%);
      border-left: 8px solid var(--primary-btn-bg);
    }
    

.contrast-ewkhqdflr h2 {
  color: inherit;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .hero-qmfdkhbxg{
    flex-direction: column;
  }

  .ban-btcgxseyj {
    width: 100%;
  }

  .tb-juhkoslzw {
    padding: var(--py);
  }

  .contrast-ewkhqdflr {
    padding: var(--py);
  }
}

.sitemap-azdeumvjf{
  display: flex;
  flex-direction: column;
  gap: var(--mb);
  list-style: none;
  margin: 15px 0;
  padding: 15px;
  border-radius: var(--border-radius);
  background: rgb(from var(--table-bg-color) r g b / 0.5);
}
.sitemap-azdeumvjf a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: var(--table-bg-color);
  text-align: left;
}
.sitemap-azdeumvjf a:hover {
  color: var(--primary-btn-bg);
}
.sitemap-azdeumvjf h2 {
  margin-top: 0;
  margin-bottom: var(--mb);
  padding: 10px;
  border-radius: var(--border-radius);
  background-color: var(--table-bg-color);
  text-align: left;
}


    .frm-twyxkipgn {
      background: var(--card-bg-color);
      border-radius: var(--border-radius);
      padding: 40px;
      box-shadow: var(--card-shadow);
      max-width: 600px;
      margin: var(--mb) auto;
    }

    .fr-leuipjorx {
      display: flex;
      flex-direction: column;
    }

    .frm-uesayrzxq {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-zkobawume {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-aeihwxozp {
      display: flex;
      flex-direction: column;
    }

    .form-ykmtgczxa, .frm-bohjudiqw {
      padding: 15px 20px;
      border-radius: var(--border-radius);
      border: 2px solid var(--table-border-color);
      background-color: var(--body-bg-color);
      color: var(--text-color);
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-ykmtgczxa:focus, .frm-bohjudiqw:focus {
      border-color: var(--primary-btn-bg);
      box-shadow: 0 0 0 3px rgba(var(--primary-btn-bg-rgb), 0.1);
    }

    .frm-bohjudiqw {
      height: 120px;
      resize: vertical;
      font-family: inherit;
    }

    .fr-leuipjorx button {
      padding: 15px 30px;
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--border-radius);
      transition: all 0.3s ease;
      width: 100%;
    }

    .fr-leuipjorx button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .frm-twyxkipgn {
        padding: 30px 20px;
        margin: var(--mb) 15px;
      }

      .form-zkobawume {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .frm-uesayrzxq {
        gap: 15px;
      }

      .form-ykmtgczxa, .frm-bohjudiqw {
        padding: 12px 15px;
        font-size: 14px;
      }
    }
    

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}


        .ban-bdqaglwzj {
            padding: 91px var(--py);
            background-color: #F0FFF0;
        }

        .hero-qmfdkhbxg {
            max-width: 1016px;
            margin: 0 auto;
        }

        .hr-dlpfhxmjc {
            background: white;
            border-radius: 36px;
            padding: 62px;
            box-shadow: 0 11px 52px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .hero-jvsunftmg {
            position: absolute;
            top: 24px;
            right: 25px;
            opacity: 0.1;
            pointer-events: none;
        }

        .ban-cmhjiltxv {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 14px;
            background: #00BFFF;
            border-radius: 9999px;
            margin-bottom: 24px;
            color: white;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .main-mzknfwjgq {
            font-size: clamp(51px, 8vw, 73px);
            font-weight: bold;
            color: #000000;
            margin-bottom: 21px;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .hr-fbirxdnjl {
            font-size: 18px;
            color: #000000;
            opacity: 0.6;
            max-width: 613px;
            margin: 0 auto;
            margin-bottom: 42px;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .hr-dlpfhxmjc {
                padding: 40px;
            }

            .main-mzknfwjgq {
                font-size: 47px;
            }

            .hr-fbirxdnjl {
                font-size: 18px;
            }
        }
        


        .card-zbvegoqma {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
        }

        .row-oawqnixuk {
            background: #ffffff;
            border-radius: var(--border-radius);
            padding: var(--py);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .row-oawqnixuk::before {
            content: '';
            position: absolute;
            top: 94%;
            left: 1%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, #00BFFF20, transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .row-oawqnixuk:hover::before {
            width: 448px;
            height: 448px;
        }

        .row-oawqnixuk:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .row-oawqnixuk h3 {
            color: #2F4F4F;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .row-oawqnixuk:hover h3 {
            color: #00BFFF;
        }

        .row-oawqnixuk p {
            color: #2F4F4F;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .card-zbvegoqma {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        