 
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.7; background: #f5f7fa; color: #333; }
    a { transition: all 0.3s ease; }
    p, ul, .faq-box details p { text-align: justify; }

    /* Hero Section */
    .hero-image-section {
      position: relative;
      height: 400px;
      overflow: hidden;
      background-color: #0a2351;
    }
    .hero-image-section::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(10, 35, 81, 0.5);
      z-index: 1;
    }
    .hero-image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      opacity: 0.9;
    }
    .hero-title {
      position: absolute;
      top: 80px;
      left: 120px;
      color: white;
      font-size: 42px;
      font-weight: 900;
      z-index: 2;
      white-space: nowrap;
      overflow: hidden;
      border-right: .15em solid white;
      width: 0;
		max-width: 32ch;
      animation: typing 3s steps(32, end) forwards;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      filter: drop-shadow(1px 1px 3px black);
    }
   
  @keyframes typing {
      from { width: 0; border-right: .15em solid white; }
      to   { width: 32ch; border-right: none; }
    }

    .hero-links {
      position: absolute;
      bottom: 20px;
      left: 120px;
      display: flex;
      gap: 25px;
      z-index: 2;
      flex-wrap: wrap;
    }
    .hero-links a {
      background: #0a2351;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      animation: slide-up 1s ease forwards;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      border: 2px solid white;
      transition: all 0.3s ease;
    }
    .hero-links a:hover {
      background: #1a3c7a;
      color: #ffd700;
      border-color: #ffd700;
      transform: translateY(-2px);
    }
    @keyframes slide-up {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Content Section */
    .content-section {
      display: flex;
      flex-wrap: wrap;
      margin: 50px 120px;
      gap: 30px;
    }
    .services-left {
      flex: 3;
      min-width: 300px;
    }
    .services-left img {
      width: 100%;
      height: auto;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .services-left h2 {
      font-size: 28px;
      color: #0a2351;
      border-bottom: 3px solid #ffd700;
      padding-bottom: 10px;
      position: relative;
      transition: color 0.3s ease;
    }
    .services-left h2::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: #1a3c7a;
      bottom: -3px;
      left: 0;
      transition: width 0.3s ease;
    }
    .services-left h2:hover::after {
      width: 100px;
    }
    .services-left h3 {
      font-size: 22px;
      color: #1a3c7a;
      margin-top: 20px;
      padding-left: 15px;
      border-left: 5px solid #ffd700;
      transition: all 0.3s ease;
    }
    .services-left h3:hover {
      color: #0a2351;
      transform: translateX(5px);
    }
    .services-left ul {
      padding-left: 25px;
      margin-bottom: 20px;
    }
    .services-left ul li {
      margin-bottom: 10px;
      font-size: 16px;
    }
    .services-right {
      flex: 1;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 25px;
      position: sticky;
      top: 20px;
      align-self: flex-start;
    }
    .services-box {
      background: #eaf1ff;
      padding: 25px;
      border-radius: 10px;
      border: 1px solid #a3c2f3;
      box-shadow: 0 4px 12px rgba(10, 35, 81, 0.15);
      transition: transform 0.3s ease;
    }
.services-box i {
  color: #007bff; /* İkon rengi */
  margin-right: 8px; /* İkon ile telefon numarası arasındaki boşluk */
  font-size: 16px; /* İkon boyutu */
}
    .services-box:hover {
      transform: translateY(-5px);
    }
    .services-box h4 {
      color: #0a2351;
      font-size: 18px;
      position: relative;
      padding-bottom: 8px;
      border-bottom: 2px solid #ffd700;
      display: inline-block;
      transition: color 0.3s ease;
    }
    .services-box h4::before {
      content: '\f058';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: #ffd700;
      margin-right: 8px;
      font-size: 16px;
    }
    .services-box h4:hover {
      color: #1a3c7a;
    }
    .services-box form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .services-box input, .services-box button {
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #a3c2f3;
      font-size: 14px;
    }
    .services-box button {
      background: #0a2351;
      color: white;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .services-box button:hover {
      background: #1a3c7a;
    }

    /* FAQ Section */
    .faq-box {
      background: #f0f0f0;
      padding: 25px;
      border-radius: 10px;
      border: 1px solid #ccc;
      min-width: 300px;
    }
    .faq-box h3 {
      font-size: 22px;
      color: #0a2351;
      padding-bottom: 10px;
      border-bottom: 2px solid #ffd700;
      position: relative;
      transition: color 0.3s ease;
    }
    .faq-box h3::after {
      content: '\f059';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: #ffd700;
      position: absolute;
      right: 0;
      top: 0;
      font-size: 18px;
    }
    .faq-box h3:hover {
      color: #1a3c7a;
    }
    .faq-box details {
      margin-bottom: 15px;
      border: 1px solid #bbb;
      border-radius: 6px;
      padding: 15px;
      background: #f2f2f2;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .faq-box details[open] {
      background: #d7f0ff;
    }
    .faq-box summary {
      font-weight: bold;
      user-select: none;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }
    .faq-box summary::before {
      content: "▶";
      color: #0a2351;
      transition: transform 0.3s ease;
    }
    .faq-box details[open] summary::before {
      transform: rotate(90deg);
    }
    .faq-box details p {
      font-size: 13px;
      margin-top: 10px;
    }
.contact-item {
    display: flex;
    align-items: center; /* Dikey hizalamayı sağlar */
  }
  .contact-item i {
    margin-right: 8px; /* İkon ile metin arasındaki boşluk */
    width: 20px; /* İkonların sabit genişliği, hizalamayı korur */
    text-align: center; /* İkonu ortalar */
  }
    /* Tables */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    th, td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    th {
      background-color: #0a2351;
      color: white;
      font-weight: 600;
    }
    tr:nth-child(even) {
      background-color: #f8f9fa;
    }

    /* Footer */
    xxfooter {
      background: linear-gradient(135deg, #3b82f6, #ccc);
     color: #1f2937;
      padding: 50px 120px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }
    .xxfooter-column {
      flex: 1 1 220px;
      margin-bottom: 20px;
    }
    .xxfooter-column h3 {
      margin-bottom: 20px;
      color: #ffd700;
      border-bottom: 2px solid #ffd700;
      padding-bottom: 8px;
      font-size: 20px;
      position: relative;
      transition: color 0.3s ease;
    }
    .xxfooter-column h3::after {
      content: '';
      position: absolute;
      width: 30px;
      height: 2px;
      background: #fff;
      bottom: -2px;
      left: 0;
      transition: width 0.3s ease;
    }
    .xxfooter-column h3:hover::after {
      width: 60px;
    }
    .xxfooter-column ul {
      list-style: none;
      padding-left: 0;
    }
    .xxfooter-column ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      line-height: 2;
    }
    .xxfooter-column ul li a:hover {
      color: #ffd700;
      text-decoration: underline;
    }
    .xxfooter-column address {
      font-style: normal;
      line-height: 1.8;
      font-size: 16px;
      text-align: justify;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
      .content-section {
        margin: 30px 20px;
        flex-direction: column;
      }
      .services-right {
        position: static;
      }
      .hero-title {
        font-size: 28px;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        white-space: nowrap;
        width: 0;
        animation: typing 3s steps(35, end) forwards;
      }
      .hero-links {
        left: 20px;
        bottom: 20px;
        flex-direction: row;
        gap: 15px;
      }
      .hero-links a {
        font-size: 14px;
        padding: 8px 12px;
      }
      xxfooter {
        padding: 30px 20px;
      }
      .services-left h2 {
        font-size: 24px;
      }
      .services-left h3 {
        font-size: 20px;
      }
      .services-box h4 {
        font-size: 16px;
      }
      .faq-box h3 {
        font-size: 20px;
      }
      .xxfooter-column h3 {
        font-size: 18px;
      }
      .faq-box summary {
        font-size: 13px;
      }
      .faq-box details p {
        font-size: 12px;
      }
    }
    @media screen and (max-width: 480px) {
      .hero-image-section {
        height: 300px;
      }
      .hero-title {
        font-size: 24px;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        white-space: nowrap;
        width: 0;
        animation: typing 3s steps(35, end) forwards;
      }
      .hero-links a {
        font-size: 12px;
        padding: 6px 10px;
      }
      .services-left h2 {
        font-size: 20px;
      }
      .services-left h3 {
        font-size: 18px;
      }
      .services-box h4 {
        font-size: 14px;
      }
      .faq-box h3 {
        font-size: 18px;
      }
      .xxfooter-column h3 {
        font-size: 16px;
      }
      .faq-box summary {
        font-size: 12px;
      }
      .faq-box details p {
        font-size: 11px;
      }
    }
  </style>