  <style>
    /* Reset & Base Styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; color: #333; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }


	/* Header */
/* Genel header */
/* HEADER satır yapısı */
/* HEADER GENEL */
header {
  background: #fafafa;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.6rem 2rem;
}

/* FLEX YAPISI */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* solda logo, ortada menü, sağda dil seçici */
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

/* LOGO (solda) */
.logo img {
  height: 55px;
}

/* MENÜ ORTADA */
nav {
  flex: 1;
  text-align: center;
}

nav ul {
  display: inline-flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #007EA7;
}

/* DİL SEÇİCİ (sağda) */
.language-selector select {
  padding: 0.3rem 0.6rem;
  border: none;
  border-radius: 6px;
  background-color: #f7f7f7;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: background 0.3s ease;
}

.language-selector select:hover {
  background-color: #e0f0f5;
}





	/* Mobil menü (önceki kalsın) */
	.menu-toggle {
	  display: none;
	  font-size: 1.8rem;
	  cursor: pointer;
	  color: #007EA7;
	  position: absolute;
	  top: 1rem;
	  right: 1rem;
	}

    /* Hero Carousel */
	.hero {
	  position: relative;
	  width: 100%;
	  height: 60vh;
	  overflow: hidden;

	  box-sizing: border-box;
	}
	
    .slides { 
		display: flex; 
		width: 100%; 
		height: 100%; 
		animation: slide 30s ease-in-out infinite; 
		
	}
    .slide {
      flex: 0 0 100%;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      color: #fff;
      background-size: cover;
      background-position: center;
    }

    @keyframes slide {
      0%, 10%     { transform: translateX(0%); }
      20%, 30%    { transform: translateX(-100%); }
      40%, 50%    { transform: translateX(-200%); }
      60%, 70%    { transform: translateX(-300%); }
      80%, 90%    { transform: translateX(-400%); }
      100%        { transform: translateX(0%); }
    }

    /* Slide Content & Banner */
    .slide-content { 
		flex: 0 0 30%; 
		padding: 0 20rem; 
		display: flex; flex-direction: column; 
		justify-content: center; }
    .slide-content h1 { font-size: 2rem; margin-bottom: 0.5rem; }
    .slide-content p { font-size: 1rem; margin-bottom: 1rem; }

    .btn-primary {
      display: inline-block;
      padding: .5rem 1.2rem;
      background: red;
      color: #fff;
      font-weight: bold;
      border-radius: 4px;
      align-self: flex-start;
      transition: background 0.2s;
    }

    .btn-primary:hover { background: #e6b00c; }

    .slide-banner { 
		flex: 0 0 40%; display: flex; 
		justify-content: left; 
		align-items: left; }
    .slide-banner img {
      width: auto;
      height: 90%;
      padding-top: 15px;
      object-fit: cover;
      border-radius: 8px;
	  align-items: left;
	  justify-content: left; 
    }

    /* Features */
    .features {
      display: flex;
      gap: 0.5rem;
      padding: 1.5rem 0;
      justify-content: center;
      background: #fafbfc;
      flex-wrap: wrap;
    }

    .feature-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04), 0 1.5px 6px rgba(0,0,0,0.07);
      padding: 0rem 0.4rem 0.6rem 0.6rem ;
      width: 250px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: box-shadow 0.2s;
      border-bottom: 4px solid #1b9bb3;
    }

    .feature-card h3 {
      font-size: 1.6rem;
      font-weight: bold;
      line-height: 1.0;
	  margin-bottom: 0.2rem;
      color: #222;
    }
	.feature-card h3 img {
	  position: relative;
	  top: -5px;           /* yukarıya kaldırır */
	  margin-bottom: 4px;  /* altına biraz boşluk ekler */
	  height: 36px;        /* istersen biraz küçültebilirsin */
	}

    .feature-card p {
      font-size: 0.9rem;
      color: #444;
      margin-bottom: 2rem;
    }

    .feature-logo {
      background: #f3f3f3;
      width: 100%;

      border-radius: 6px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.2rem;
    }

    .feature-logo img {
      max-height: 300px;
      max-width: 100%;
    }

    .feature-card a {
      color: #007EA7;
      font-weight: 500;
      text-decoration: none;
      margin-top: auto;
      transition: color 0.2s;
    }

    .feature-card a:hover {
      color: #1b9bb3;
      text-decoration: underline;
    }

    /* Footer */
    footer { background: #333; color: #ccc; padding: 2rem; }
    .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; }
    .footer-column { flex: 1 1 200px; margin: 1rem; }
    .footer-column h4 { color: #fff; margin-bottom: 1rem; }
    .footer-column ul li { margin-bottom: 0.5rem; }
    .footer-column a:hover { color: #fff; }
    .footer-bottom { text-align: center; margin-top: 2rem; font-size: 0.85rem; }

    /* ----------------------------- */
    /* RESPONSIVE DESIGN SECTION    */
    /* ----------------------------- */

    /* Tablet and below */
    @media (max-width: 992px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
        display: none; /* gizli başlar, toggle ile açılır */
      }

      nav.active ul {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        height: auto;
      }

      .slides {
        flex-direction: column;

        animation: none;
      }

      .slide {
        flex-direction: column;
        text-align: center;
      }

      .slide-content, .slide-banner {
        flex: 0 0 100%;
        padding: 1rem;
      }

      .slide-banner img {
        width: 100%;
        height: auto;
        padding-top: 0;
      }

      .slide-content h1 {
        font-size: 1.5rem;
      }

      .slide-content p {
        font-size: 0.95rem;
      }

      .features {
        flex-wrap: wrap;
        justify-content: center;
      }

      .feature-card {
        width: 45%;
      }

      .footer-container {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Phone */
    @media (max-width: 600px) {
      .feature-card {
        width: 100%;
      }

      .feature-card h3 {
        font-size: 1.2rem;
      }

      .feature-card p {
        font-size: 0.85rem;
      }

      nav ul {
        width: 100%;
        align-items: center;
      }

      .slide-content h1 {
        font-size: 1.3rem;
      }

      .btn-primary {
        align-self: center;
      }
    }
	
	<!-- alt blok -->
	/* Görsel + Metin Bloğu */
	.image-highlight {
	  background: #fff;
	  padding: 3rem 2rem;
	  display: flex;
	  justify-content: center; /* Ortaya al */
	}

	.image-highlight-container {
	  display: flex;
	  align-items: center;
	  justify-content: center; /* İçeriği yatay ortala */
	  gap: 2rem;
	  max-width: 1200px;       /* İçeriğin genişliğini sınırla */
	  margin: 0 auto;          /* Sayfanın ortasında dursun */
	  flex-wrap: wrap;
	  text-align: left;
	}

	/* Sol taraf (resim) */
	.highlight-image {
	  flex: 1 1 280px;
	  min-width: 200px;
	  display: flex;
	  justify-content: center ;
	  align-items: center;
	}

	.highlight-image img {
	  max-width: 100%;
	  height: auto;
	  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
	  display: block;
	  object-fit: contain;
	}

	/* Sağ taraf (metin) */
	.highlight-content {
	  flex: 0 0 720px;
	  min-width: 200px;
	}

	.highlight-content h2 {
	  font-size: 1.8rem;
	  font-weight: 600;
	  color: #111;
	  margin-bottom: 0.5rem;
	}

	.underline {
	  width: 60px;
	  height: 3px;
	  background: #f1c40f;
	  margin-bottom: 1rem;
	}

	.highlight-content p {
	  font-size: 14px;
	  color: #333;
	  line-height: 1.6;
	  margin-bottom: 1.5rem;
	}

	.highlight-btn {
	  display: inline-block;
	  border: 1px solid #222;
	  padding: 0.6rem 1.2rem;
	  border-radius: 6px;
	  font-weight: 400;
	  transition: all 0.2s ease;
	}

	.highlight-btn:hover {
	  background: #f1c40f;
	  border-color: #f1c40f;
	  color: #111;
	}

	/* 📱 Responsive Ayarlar */
	@media (max-width: 992px) {
	  .image-highlight-container {
		flex-direction: column;
		text-align: center;
	  }

	  .highlight-content {
		padding-top: 1rem;
	  }

	  .highlight-content h2 {
		font-size: 1.5rem;
	  }
	}

	@media (max-width: 600px) {
	  .highlight-content p {
		font-size: 0.95rem;
	  }
	}

	.feature-logo-top {
	  display: block;
	  margin: 0 auto 0.4rem auto;
	  height: 36px;
	}

	/* M harfi kutu içinde */
	.highlight-letter {
	  display: inline-block;
	  background-color: #007EA7;  /* MORSE kurumsal mavisi */
	  color: #fff;
	  font-weight: 700;
	  padding: 0 6px;
	  border-radius: 2px;        /* ister yuvarlak, ister 0 */
	  font-size: 1em;
	}
	
	.dual-line {
	  width: 80%;
	  height: 5px;
	  background: linear-gradient(
		to right,
		#07519C 35%,   /* mavi kısmı */
		#d9d9d9 35%    /* gri kısmı */
	  );
	  border-radius: 2px;
	  margin: 2rem auto;   /* ✅ üst-alt 2rem, sağ-sol otomatik: ortalar */
	  display: block;      /* garanti olsun diye ekledik */
	}

	.dual-line-rev {
	  width: 80%;
	  height: 5px;
	  background: linear-gradient(
		to right,
		#d9d9d9 35%,
		#8dc63f 35%		/* gri kısmı */
	  );
	  border-radius: 2px;
	  margin: 2rem auto;   /* ✅ üst-alt 2rem, sağ-sol otomatik: ortalar */
	  display: block;      /* garanti olsun diye ekledik */
	}

  </style>