/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f9f8;
  color: #333;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  display: flex;
  flex-direction: column;
}

img,
iframe {
  max-width: 100%;
  height: auto;

}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Topbar */
.topbar {
  background-color: #1e7f7f;
  /* Dilersen kendi rengini koyabilirsin */
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 8px 30px;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

.topbar-left i,
.topbar-right i {
  margin-right: 6px;
}

.topbar-left a {
  margin-right: 15px;
}

.topbar-right a {
  margin-left: 10px;
  font-size: 16px;
  transition: opacity 0.3s;
}


.topbar-right a:hover {
  opacity: 0.7;
}


/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #ffffff;
  position: relative;
}

header .logo a,
header .title a {
  display: inline-block;
  width: 100%;
  text-align: center;
}

header .logo img {
  height: 100px;
}

header .title {
  font-size: 32px;
  font-weight: 600;
  color: #1e7f7f;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
 
  margin-left: 150px;
}

header .title a {
  text-decoration: none;
  color: #1e7f7f;
}



.title a:visited {
  color: #1e7f7f;
  text-decoration: none;
}

nav {
  margin-left: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: #1e7f7f;
  font-weight: bold;
  font-size: 13px;
  transition: color 0.3s;
  position: relative;
}

nav ul li a.active {
  color: #145b5b;
  font-weight: bold;
}


nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #145b5b;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav ul li a:hover::after {
  width: 100%;
}

.page-title {
  text-align: center;
  font-size: 32px;
  color: #1e7f7f;
  margin-top: 40px;
  margin-bottom: 10px;
}
/* Hamburger Menü */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #1e7f7f;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 25px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 30px;
  margin-bottom: 30px;
}

.hero-text .button,
.button {
  padding: 14px 35px;
  background: linear-gradient(135deg, #145b5b, #0f4343);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-block;
}

/*about-info kısmı*/
.about-info .button {
  display: inline-block;
  margin-top: 5px;
  /* Kartlarla arasına 5px boşluk */
  background: linear-gradient(135deg, #1e7f7f, #145b5b);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.about-info .button:hover {
  transform: scale(1.05);
}

.button i {
  margin-right: 8px;
}


.button:hover,
.hero-text .button:hover {
  background: linear-gradient(135deg, #195c5c, #144646);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* About Short Section */
.about-short {
  padding: 20px 20px;
  text-align: center;
}

.about-short h2 {
  font-size: 36px;
  color: #227a7a;
  margin-bottom: 20px;
}

.about-short p {
  font-size: 18px;
  margin-bottom: 30px;
}
.faq-cards {
  background-color: #eaf7f6;
  padding: 60px 20px;
  text-align: center;
}

.faq-cards .section-title {
  font-size: 2rem;
  color: #135f5c;
  margin-bottom: 40px;
}

.faq-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
}

.faq-card h3 {
  font-size: 1.2rem;
  color: #135f5c;
  margin-bottom: 10px;
}

.faq-card p {
  color: #444;
  font-size: 0.95rem;
  margin: 0;
}

.faq-button-container {
  margin-top: 30px;
}

.btn-faq {
  display: inline-block;
  background-color: #135f5c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-faq:hover {
  background-color: #0f4e4c;
}

/* About Full Page */
.about-full {
  padding: 80px 20px;
  background-color: #f0f7f7;
  text-align: center;
}

.about-full h2 {
  font-size: 36px;
  color: #227a7a;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
  color: #555;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 80px 20px;
  background-color: #e6f2f2;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: #227a7a;
  margin-bottom: 40px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
 
}

.card {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 40px;
  color: #227a7a;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #666;
}

/* Specialities Section */
.specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #e6f2f2;
  text-align: center;
}

.specialty-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;

}

.specialties a {
  text-decoration: none;
  color: inherit;
}


.specialty-card:hover {
  transform: scale(1.05);
}

.specialty-card i {
  font-size: 40px;
  color: #227a7a;
  margin-bottom: 15px;
}

/* Certificates Section */
.certificates-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 0 40px;
}
.certificate-box {
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.certificates-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}
.certificates-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.certificates-gallery a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* Blog Section */
.blog {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.blog h2 {
  font-size: 36px;
  color: #227a7a;
  margin-bottom: 40px;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card h3 {
  font-size: 22px;
  color: #227a7a;
  margin-bottom: 15px;
}

.blog-card p {
  font-size: 16px;
  color: #666;
}

/* Reviews Section */
.reviews {
  padding: 80px 20px;
  background-color: #e6f2f2;
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  color: #227a7a;
  margin-bottom: 40px;
}

.reviews-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-card h3 {
  font-size: 20px;
  color: #227a7a;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 16px;
  color: #666;
}

.contact-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  /* Form ve bilgi hizası aynı olsun */
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.contact-left h2,
.contact-form h2 {
  color: #227a7a;
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-left p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #444;
}

/* Form kısmı sağda ve geniş */
.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left a {
  color: #227a7a;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.contact-left a:hover {
  text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  resize: none;
}

.contact-form button {
  background: linear-gradient(135deg, #227a7a, #1b5d5d);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #195c5c, #144646);
  transform: scale(1.05);
}

/* Harita varsa iframe özelliği */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

/* Footer */
footer {
  background-color: #145b5b;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: auto;
}

.about-modern .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-info {
  flex: 2;
  min-width: 300px;
}

.about-info h1 {
  font-size: 32px;
  color: #227a7a;
  text-align: left;
  margin-bottom: 10px;
}

.about-info .intro {
  font-size: 18px;
  color: #444;
}

.about-info blockquote {
  background: #f0f7f7;
  padding: 15px 20px;
  border-left: 5px solid #227a7a;
  font-style: italic;
  border-radius: 8px;
  color: #555;


}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .about-modern .container {
    flex-direction: column;
    align-items: center;
  }
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-info {
  flex: 2;
  min-width: 300px;
}

.about-info h1 {
  font-size: 32px;
  color: #227a7a;
  text-align: left;
  margin-bottom: 10px;
}

.about-info .intro {
  font-size: 18px;
  color: #444;
}

.about-info blockquote {
  background: #f0f7f7;
  padding: 15px 20px;
  border-left: 5px solid #227a7a;
  font-style: italic;
  border-radius: 8px;
  color: #555;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 250px;
}


/* Responsive Ayarlar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #1e7f7f;
    z-index: 1000;
    cursor: pointer;
    /* Sadece mobilde göster */
  }

  .about-short h2,
  .about-full h2,
  .services h2,
  .blog h2,
  .reviews h2 {
    font-size: 26px;
    /* Başlıkları küçülttüm */
  }

  .about-short p,
  .about-full p,
  .services p,
  .blog p,
  .reviews p {
    font-size: 16px;
    /* Paragrafları küçülttüm */
  }

  .hero-text h1 {
    font-size: 24px;
    /* Slider başlık küçüldü */
  }

  .hero-text p {
    font-size: 16px;
    /* Slider alt yazı küçüldü */
  }


  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background-color: #1e7f7f;
    flex-wrap: wrap;
  }

  .topbar-left {
    display: flex;
    flex-direction: column;
    /* ALT ALTA telefon ve mail */
    gap: 4px;
  }

  .topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    /* İkonlar arası boşluk */
    width: 100%;
  }

  .topbar-left a,
  .topbar-right a {
    display: inline-block;
    color: white;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
  }
  .topbar-right a {
    font-size: 18px;  /* mobilde daha okunabilir olur */
  }

  .about-info .cards {
    flex-direction: column;
  }


  .contact-page {
    flex-direction: column;
    align-items: center;
  }
  .contact-form input,
  .contact-form textarea {
    text-align: center;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
  }

  .contact-map iframe {
    height: 300px;
  }

  nav ul {
    display: none;
    /* Başta gizli */
    flex-direction: column;
    background-color: #1e7f7f;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 260px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }


  header .logo {
    margin-bottom: 5px;
    /* Logo sola yaslanır */
  }


  header .logo img {
    height: 70px;
    /* Logo mobilde küçülüyor */
  }

  header .title {
    font-size: 20px;
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }

  .hero-slider {
    height: 40vh;
    /* Mobilde slider biraz daha küçük olsun */
  }

  .contact-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
  }

  .hero-text .button,
  .button {
    padding: 10px 20px;
    /* Daha küçük iç boşluk */
    font-size: 16px;
    /* Yazı biraz küçültüldü */
    width: auto;
    /* Tam genişlik kaplamasın */
    white-space: nowrap;
    /* Yazı asla alt alta kaymasın */
  }

  .contact-right iframe {
    height: 300px;
    /* Harita mobilde daha küçük */
  }

  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .blog-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-card img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .blog-card h3 {
    font-size: 20px;
    color: #227a7a;
    margin-bottom: 10px;
  }

  .blog-card p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
  }

  .blog-card .button {
    margin-top: auto;
  }

  .highlighted-quote {
    background-color: #f0f7f7;
    padding: 15px 20px;
    border-left: 5px solid #227a7a;
    font-style: italic;
    margin: 25px 0;
    color: #444;
    font-size: 18px;
    border-radius: 8px;
  }

  .custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
  }

  .custom-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 17px;
    color: #555;
  }

  .custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #227a7a;
    font-weight: bold;
  }




  .about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }

  .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .about-info {
    flex: 2;
    min-width: 300px;
  }

  .about-info h1 {
    font-size: 32px;
    color: #227a7a;
    margin-bottom: 10px;
  }

  .about-info .intro {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
  }

  .about-info blockquote {
    font-style: italic;
    background: #f0f7f7;
    padding: 15px 20px;
    border-left: 5px solid #227a7a;
    margin-bottom: 30px;
    border-radius: 8px;
    color: #555;
  }

  .about-info .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }

  .about-info .card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }


  .about-info .card h2 {
    color: #1b5d5d;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about-info .card ul {
    list-style: none;
    padding-left: 0;
  }

  .about-info .card ul li::before {
    content: "✔";
    color: #227a7a;
    font-weight: bold;
    margin-right: 10px;
  }

  .about-info .card ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
  }

  .about-info .button {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #227a7a, #1b5d5d);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .about-info .button:hover {
    transform: scale(1.05);
  }



  .about-info h1 {
    text-align: center;
  }

  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;


  }

  header .logo img {
    height: 60px;
  }

  header .title {
    font-size: 20px;
    margin: 10px 0;
    text-align: center;
    white-space: normal;
  }

  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    gap: 10px;
    
  }

  .topbar-left,
  .topbar-right {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }

  .topbar a {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .topbar a span{
    display: none;
  }


  nav ul.show {
    display: flex;
  }

  nav ul li a {
    text-align: center;
    padding: 8px 12px;
    color: white
  }

  .hero-slider {
    height: 40vh;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .services-cards,
  .reviews-cards,
  .blog-cards,
  .certificates-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card,
  .review-card,
  .blog-card,
  .certificate-box {
    width: 90%;
  }

  .blog-card img {
    height: 180px;
  }



  .about-info .cards {
    flex-direction: column;
  }

  .about-image img {
    max-width: 90%;
  }

  .contact-page {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-form {
    text-align: center;
  }


  .contact-map iframe {
    height: 300px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #1e7f7f;
    cursor: pointer;
    z-index: 1000;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
  }

  header .logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  header .title {
    margin-left: 0;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  header .title a {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }

  nav {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }

  /*blog kartları */
  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    /* Tüm kartlar eşit yüksekliğe zorlanır */
    gap: 30px;
  }

  .blog-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Butonlar alt hizaya çekilir */
  }

  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .blog-card h3 {
    font-size: 20px;
    color: #227a7a;
    margin-bottom: 10px;
  }

  .blog-card p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
  }

  .blog-card .button {
    margin-top: auto;
    align-self: center;
    /* butonu yatayda ortalar */
  }

  .hero-slider {
    height: 40vh;
    /* Masaüstü 70vh idi, burada daha kısa */
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .specialties {
    flex-wrap: nowrap;
    /* Kartların alt alta kaymasını engelle */
    justify-content: center;
    /* Ortala */
  }

  .specialty-card {
    flex: 1 1 0;
    max-width: 300px;
  }
.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #135f5c;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion {
  background-color: #ffffff;
  color: #135f5c;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.accordion:hover {
  background-color: #f0f7f7;
}

.panel {
  padding: 0 20px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

.accordion::after {
  content: '+';
  font-size: 1.3em;
  float: right;
  transition: transform 0.3s ease;
}

.accordion.active::after {
  content: '-';
}

.panel.show {
  max-height: 300px;
}
}