.about-section {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .about-section .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
  }
  
  .about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
  }
  
  .about-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
  }
  
  .about-section ul li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }
  
  .about-section ul li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #2d8f3f;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
  
    .about-section p,
    .about-section ul li {
      font-size: 16px;
    }
  }
  /* Hero Section Ortak Stil */
  .service-hero {
    padding: 100px 20px;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  /* Hero Logo */
  .hero-logo {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  /* Hero Başlık */
  .hero-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Hero Slogan */
  .hero-slogan {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
  }
  
  /* Mobil Uyumluluk */
  @media (max-width: 768px) {
    .service-hero {
      padding: 50px 20px;
    }
    
    .hero-title {
      font-size: 30px;
    }
  
    .hero-slogan {
      font-size: 16px;
    }
  }  
  .site-header {
    background-color: #001f3f;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
  }
  
  .nav-menu {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: #00aced;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
  }
  
  /* Mobil uyum */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      background-color: #001f3f;
      position: absolute;
      top: 60px;
      right: 1rem;
      width: 200px;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-toggle {
      display: block;
    }
  }
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    cursor: pointer;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    display: inline-block;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #001f3f;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 999;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    flex-direction: column;
  }
  
  .dropdown-menu a {
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    display: block;
    font-weight: 400;
  }
  
  .dropdown-menu a:hover {
    background-color: #003366;
  }
  
  /* Masaüstü görünüm */
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
      display: flex;
    }
  }
  
  /* Mobilde menü açıldığında gösterilsin */
  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      background-color: transparent;
      box-shadow: none;
    }
  
    .dropdown-menu a {
      background-color: #001f3f;
      margin-top: 5px;
      border-radius: 4px;
    }
  
    .dropdown.active .dropdown-menu {
      display: flex;
    }
  }

  .site-footer {
    background-color: #001f3f;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .footer-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .slogan {
    font-style: italic;
    margin-top: 5px;
    color: #ccc;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .footer-contact {
    text-align: center;
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 30px;
  }
  
  .footer-contact a {
    color: #ccc;
    text-decoration: underline;
  }
  
  .footer-map iframe {
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
  }
  
  /* Mobil uyum */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      margin-bottom: 20px;
    }
  
    .footer-map iframe {
      height: 250px;
    }
  }  