      .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }

      .image-index {
        flex: 1 1 50%;
        background-size: cover;
        background-position: center;
        height: 555px;
      }

      .text-index {
        flex: 1 1 50%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
      }

      .text-index .orange-line {
        width: 50px;
        height: 5px;
        background-color: #ff5722;
        margin-bottom: 30px;

      }

      .text-index h2 {
        color: #212121;
        font-size: 28px;
        margin-bottom: 16px;
      }

      .text-index p {
        color: #555;
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.6;
      }

      .text-index a {
        color: #ff5722;
        text-decoration: none;
        font-weight: bold;
        font-size: 16px;
        border-bottom: 1px solid #ff5722;
        transition: color 0.3s ease;
      }

      .text-index a:hover {
        color: #e64a19;
      }

      @media (max-width: 768px) {

        .image-index,
        .text-section {
          flex: 1 1 100%;
          height: 200px;
        }

        .text-section {
          padding: 20px;
        }

      }

      .container {
        text-align: center;
        padding: 20px;
      }

      .container h1 {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      .container p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #ccc;
      }

      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 5px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .grid-item {
        display: flex;
        align-items: center;
        margin: 0;
        /* Mobil uyum için negatif margin kaldırıldı */
      }

      .grid-item span {
        color: #fff;
        font-size: 1rem;
        flex-grow: 1;
        text-align: left;
      }

      .grid-item .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        width: 40px;
        height: 40px;

      }

      .grid-item .icon svg {
        width: 24px;
        height: 24px;
      }

      @media (max-width: 768px) {
        .container h1 {
          font-size: 1.5rem;
        }

        .container p {
          font-size: 0.9rem;
        }

        .grid {
          grid-template-columns: 1fr;
          /* Mobilde tek sütun */
        }

        .grid-item {
          flex-direction: row;
          /* Mobilde öğeler dikey hizalanır */
          align-items: center;
          justify-content: start;
        }

        .grid-item .icon {
          margin-right: 10;
          margin-bottom: 0px;
          /* Mobilde ikon ve metin arasında boşluk ekler */
        }


        .container p {
          font-size: 0.9rem;
        }



      }

      .container {
        display: flex;
        /* justify-content: space-between;*/
        align-items: stretch;
        /*width: 90%;*/

        margin: 20px auto;
        /* gap: 20px;*/
      }

      .content {
        flex: 1;
        /* display: flex;*/
        flex-direction: column;
        gap: 20px;
        min-width: 300px;
        max-width: 90%;
      }

      .slider {
        flex: 1;
        max-width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
      }

      .slider img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
      }

      .slider .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
      }

      .slider .arrow.left {
        left: 10px;
      }

      .slider .arrow.right {
        right: 10px;
      }

      .content {
        width: 90%;
        margin: auto;
        font-family: Arial, sans-serif;
      }

      .header {
        text-align: center;
        margin-bottom: 20px;
      }

      .header h1 {
        font-size: 36px;
        color: #2c2c2c;
      }

      .header p {
        font-size: 16px;
        color: #666;
        margin-top: 10px;
      }

      .news-container {
        display: flex;
        gap: 20px;
      }

      .news-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        /*gap: 20px;*/
      }

      .news-item {
        display: flex;
        gap: 15px;
        /*border: 1px solid #eee;*/
        padding: 3px;
        border-radius: 8px;
      }

      .news-item img {
        /* width: 100px;*/
        height: 120px;
        border-radius: 8px;
      }

      .news-content p {
        font-size: 12px;
        color: #888;
        text-align: left;
        line-height: 17px;
        margin: 0px;
      }

      .news-content h3 {
        font-size: 18px;
        margin: 5px 0;
        color: #333;
        text-align: left;
        font-weight: bold;
      }

      .view-all-btn {
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 16px;
        color: white;
        background-color: #28a745;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        align-self: flex-start;
      }

      .featured-news {
        flex: 1.5;
        position: relative;
      }

      .featured-news img {
        width: 100%;
        border-radius: 8px;
      }

      .featured-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 8px;
      }

      .featured-overlay p {
        font-size: 14px;
        margin: 0;
      }

      .featured-overlay h2 {
        font-size: 24px;
        margin-top: 10px;
      }

      .alan6-content {
        text-align: center;
        padding: 20px;
      }

      .alan6-header h1 {
        font-size: 32px;
      }

      .alan6-header p {
        font-size: 16px;
        margin-top: 10px;
        color: #ccc;
      }

      .alan6-container {
        width: 90%;
        margin: 20px auto;
        position: relative;
        overflow: hidden;
      }

      .alan6-wrapper {
        display: flex;
        gap: 15px;
      }

      .alan6-slide {
        background-color: #2c2c2c;
        border-radius: 8px;
        text-align: center;
        /*padding: 20px;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .alan6-slide img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
      }

      .alan6-slide h3 {
        font-size: 14px;
        margin-top: 10px;
        color: #fff;
      }

      .alan6-button-next,
      .alan6-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        z-index: 10;
      }

      .alan6-button-next {
        right: 10px;
      }

      .alan6-button-prev {
        left: 10px;
      }

      .alan6-pagination {
        margin-top: 10px;
        text-align: center;
        color: #fff;
      }

      .alan6-view-all-btn {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 16px;
        color: white;
        background-color: #28a745;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
 /* Genel footer stilleri */
 .footer {
  
  padding: 0px 0;
  font-family: 'Arial', sans-serif;
  
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-section {
  /*flex: 1;*/
  min-width: 140px;
  margin: 15px;
}

.footer-section h3 {
  font-size: 18px;
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
  color: #4A4A4A;
  font-size: 14px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #666;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #0056b3;
}

/* İletişim kısmı */
.contact ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.contact ul li i {
  color: #6CA36C;
  margin-right: 8px;
}

.contact ul li a {
  margin-left: 5px;
  color: #333;
  text-decoration: none;
}

.contact ul li a:hover {
  color: #0056b3;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-section {
      text-align: center;
  }
}
.blog-card {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin: 20px;
}
.blog-image {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff5722;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}
.blog-content {
  padding: 15px;
}
.blog-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.blog-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.blog-footer {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #777;
}
.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.custom-carousel-container {
  position: relative;
  width: 960px;
  overflow: hidden;
  padding-bottom: 50px;
}
.custom-carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
  width: calc(320px * 5 + 20px * 4);
}
.custom-blog-card {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  flex-shrink: 0;
}
.custom-blog-image {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.custom-category {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff5722;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}
.custom-blog-content {
  padding: 15px;
}
.custom-blog-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.custom-blog-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.custom-blog-footer {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #777;
}
.custom-author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Butonları sol alta yerleştirme */
.custom-button-container {
  /*position: absolute;
  bottom: 10px;
  left: 10px;*/
  display: flex;
  gap: 10px;
}
.custom-nav-button {
  background: #6AA338;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
}
.custom-nav-button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.custom-nav-button.custom-disabled {
  opacity: 0.5;
  pointer-events: none;
}
