body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #f8f9fa;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 16px 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* logonun yüksekliği */
  margin-right: 10px; /* logo ile yazı arası boşluk */
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c20000; /* Veya kullandığınız ana renk */
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  /* Span'e özel stil gerekirse buraya eklenir */
}

.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-giris {
  background-color: #c20000;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}


.header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero {
    text-align: center;
    background-color: #002244;
    color: white;
    padding: 1px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fade-in-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    max-width: 500px;
    margin: 0 auto;
    min-height: 60px;
}

.about-us-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-section.reversed {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #002244;
    border-left: 5px solid #c20000;
    padding-left: 15px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

.testimonials {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #002244;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card .author {
    font-weight: bold;
    color: #002244;
    margin-top: 15px;
}

.author-info {
    font-size: 0.9rem;
    color: #888;
}

footer {
    background-color: #f0f0f0; /* Hizmetler.html'deki gibi */
    color: #333;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .about-us-section {
        flex-direction: column;
        text-align: center;
    }
    .about-us-section.reversed {
        flex-direction: column;
    }
    .about-content h2 {
        border-left: none;
        padding-left: 0;
    }
}


/* 900px ve altındaki ekranlarda mobil uyumluluğu korumak için */
@media (max-width: 900px) {
  .services {
    flex-wrap: wrap; /* Ekran küçülünce alt satıra geçmesini sağlar */
    justify-content: space-around;
  }
  .service-card {
    width: 45%; /* İkişerli hizalama için */
    margin-bottom: 30px;
  }
}

/* 600px ve altındaki ekranlarda */
@media (max-width: 600px) {
  .service-card {
    width: 90%; /* Tekli hizalama için */
  }
}
