
  /* Ana Container */
  .il5qg {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #116f65;
    padding: 10px 0;
  }

  /* Header - Logo ve Dil Seçici */
  .il5qgheader {
    display: flex;
    width: var(--max);
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 10px;
  }

  .il5qgbody {
    display: flex;
    align-items: center;
  }

  .il5qgbodylogo {
    height: 100px;
    max-width: 90vw;
    object-fit: contain;
  }

  /* Sağ Taraf - Dil Seçici ve Hamburger */
  .il5qgright {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Dil Seçici - Desktop */
  .il5qglanguages {
    display: flex;
    align-items: center;
  }

  .il5qglanguages ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .il5qglanguages li {
    list-style: none;
  }

  .il5qglanguages li a {
    padding: 8px 12px;
    font-size: 14px;
    color: #279c90;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .il5qglanguages li a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .il5qglanguages:empty,
  .il5qglanguages ul:empty {
    display: none;
  }

  /* Hamburger Menü Butonu */
  .il5qgmenumobil {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background-color: #279c90;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: #fff;
    transition: all 0.3s ease;
  }

  .il5qgmenumobil:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
  }

  .il5qgmenumobil .material-symbols-outlined {
    font-size: 28px;
  }

  /* Menü Listesi */
  .il5qgmenulist {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #279c90;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    width: var(--max);
    margin: 15px auto 0;
    overflow: hidden;
  }

  .il5qgmenulist ul {
    list-style-type: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 4px;
    justify-content: flex-start;
    width: 100%;
  }

  .il5qgmenulist ul a {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
  }

  .il5qgmenulist ul a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
  }

  .il5qgmenulist ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  .il5qgmenulist ul a:hover::before {
    width: calc(100% - 20px);
  }

  .il5qgmenuactive {
    background-color: rgba(255, 255, 255, 0.2) !important;
    font-weight: 600;
  }

  .il5qgmenuactive::before {
    width: calc(100% - 20px) !important;
  }

  /* Dil Seçici - Mobil */
  .il5qglanguages-mobile {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .il5qglanguages-mobile ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
  }

  .il5qglanguages-mobile li {
    list-style: none;
    display: flex;
  }

  .il5qglanguages-mobile li a {
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .il5qglanguages-mobile li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
  }

  .il5qglanguages-mobile:empty,
  .il5qglanguages-mobile ul:empty {
    display: none !important;
  }

  /* Desktop Görünüm */
  @media screen and (min-width: 1025px) {
    .il5qgmenumobil {
      display: none !important;
    }

    .il5qgmenulist {
      display: flex !important;
      margin-top: 20px;
    }

    .il5qgmenulist ul {
      justify-content: center;
      gap: 4px;
    }

    .il5qgmenulist ul a {
      padding: 14px 28px;
      font-size: 16px;
    }
  }

  /* Tablet ve Mobil */
  @media screen and (max-width: 1024px) {
    .il5qgheader {
      width: calc(100% - 20px);
    }

    .il5qgmenumobil {
      display: flex;
    }

    .il5qglanguages {
      display: none;
    }

    .il5qgmenulist {
      width: calc(100% - 20px);
      margin: 15px auto 0;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      flex-direction: column;
      display: none;
    }

    .il5qgmenulist:not(.is-collapsed) {
      display: flex;
    }

    .il5qgmenulist ul {
      flex-direction: column;
      gap: 0;
      width: 100%;
      padding: 12px 0;
    }

    .il5qgmenulist ul a {
      width: 100%;
      padding: 14px 20px;
      border-radius: 0;
      text-align: left;
      justify-content: flex-start;
    }

    .il5qgmenulist ul a:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: none;
    }

    .il5qgmenulist:not(.is-collapsed) .il5qglanguages-mobile {
      display: flex;
      flex-direction: column;
      padding: 0 20px 15px;
    }

    .il5qgmenulist:not(.is-collapsed) .il5qglanguages-mobile ul {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* Küçük Mobil */
  @media screen and (max-width: 768px) {
    .il5qg {
      padding: 8px 0;
    }

    .il5qgheader {
      padding: 0 15px;
    }

    .il5qgbodylogo {
      max-width: 60vw;
    }

    .il5qgmenulist ul a {
      font-size: 14px;
      padding: 12px 20px;
    }

    .il5qgmenumobil {
      padding: 6px 10px;
    }

    .il5qgmenumobil .material-symbols-outlined {
      font-size: 24px;
    }
  }


  /* Ana Container */
  .rc5wo {
    width: 100%;
    margin: 15px 0;
  }

  /* Grid Container */
  .rc5wobody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Item Container */
  .rc5wobodyitem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    flex-direction: column;
    gap: 5px;
    margin: 5px;
    width: calc((var(--max) / 2) - 10px);
    position: relative;
  }

  .rc5wobodyitemlink {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
  }

  /* Resim Container */
  .rc5wobodyitemimg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: calc(200px * 2);
    margin-top: -100px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .rc5wobodyitemimg:hover {
    transform: translateY(-10px);
  }

  .rc5wobodyitemimg img {
    max-height: 200px;
    max-width: calc(200px * 2);
    border-radius: 10px;
  }

  /* Başlık */
  .rc5wobodyitemtitle {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    width: 100%;
    margin: 10px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .rc5wobodyitemtitle:hover {
    transform: translateY(-2px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  }

  /* Arka Plan */
  .rc5wobodybg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.5;
  }

  /* İçerik Container */
  .rc5wobodyitems {
    padding: 5px;
    display: flex;
    flex-direction: column;
    background-color: #279c90;
    gap: 15px;
    opacity: 0;
    margin-top: 100px;
    position: relative;
    transition: opacity 0.3s ease, transform 0.5s ease;
  }

  /* Sol Hizalama */
  .rc5wobodyitems.left {
    align-self: flex-start;
    border-radius: 0 10px 10px 0;
    transform: translateX(-100px);
  }

  /* Sağ Hizalama */
  .rc5wobodyitems.right {
    align-self: flex-end;
    border-radius: 10px 0 0 10px;
    transform: translateX(100px);
  }

  /* Görünür Durum */
  .rc5wobodyitems.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Item Hizalama */
  .rc5wobodyitem.lefts {
    align-self: flex-end;
  }

  .rc5wobodyitem.rights {
    align-self: flex-start;
  }

  /* Alt Sayfa Linkleri */
  .rc5wobodyitechile {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
    text-align: center;
    color: #fff;
  }

  .rc5wobodyitechilesubpage {
    font-size: --chilesize--;
    color: --chilecolor-- !important;
    padding: 10px;
    border-radius: 5px;
    background-color: --chilebgcolor--;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
  }

  .rc5wobodyitechilesubpage:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }

  /* Tablet ve Mobil */
  @media screen and (max-width: 1024px) {
    .rc5wobodyitem {
      width: calc(100% - 30px);
    }

    .rc5wobody {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .rc5wobodyitems {
      width: 100%;
    }

    .rc5wobodyitems.left,
    .rc5wobodyitems.right {
      align-self: stretch;
      border-radius: 10px;
    }
  }


  .ajanslink {
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    margin: 20px 0px 20px 0px;
  }
  .moduleimg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .moduleimg > img {
    width: 100%;
    max-width: 250px;
  }

  .footer {
    position: relative;
    background: #116f65;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
  }

  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }

  .social-icon__item,
  .menu__item {
    list-style: none;
  }

  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }

  .social-icon__link:hover {
    transform: translateY(-10px);
  } 

  .menu__link {
    font-size: 1.2rem;
    color: #fff !important;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }

  .menu__link:hover {
    opacity: 1;
  }

  .footer p { 
    color: #fff;
    margin: 5px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  }

  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg version='1.0' id='katman_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 640 65' style='enable-background:new 0 0 640 65;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23116f65;%7D %3C/style%3E %3Cpath class='st0' d='M0,22.4C0,22.4,74.1,0,153,0c176.5,0,328.1,76.6,487,22.4V65H0V22.4z'/%3E%3C/svg%3E");
    background-size: 1000px 102px;
  }

  .wave#wave1 {
    z-index: 100;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
  }

  .wave#wave2 {
    z-index: 99;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }

  .wave#wave3 {
    z-index: 100;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }

  .wave#wave4 {
    z-index: 99;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }

  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }

    100% {
      background-positon-x: 0px;
    }
  }

  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }

    100% {
      background-positon-x: 0px;
    }
  }

