/* Genel Stil Ayarları */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #f8f9fa;
}

/* Navbar */
.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;
  margin-right: 10px;
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c20000;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.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;
}

/* Sayfa Başlığı */
.hero {
  text-align: center;
  background-color: #002244;
  color: white;
  padding: 20px;
}

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

.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;
}

/* Hizmet Kartları - GRID */
section.services {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 0 auto !important;
  max-width: 1400px !important;
  padding: 30px 20px !important;
}

section.services > * {
  grid-column: auto !important;
  min-width: 0 !important;
}

section.services > .service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100% !important;
}

section.services > .service-card img {
  max-width: 120px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  margin-bottom: 12px !important;
  display: block !important;
}

section.services > .service-card h3,
section.services > .service-card p {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  margin: 0.5rem 0 !important;
  color: #007bff;
}

/* Responsive Düzen: Telefon */
@media (max-width: 768px) {
  section.services {
    grid-template-columns: 1fr !important;
  }
}

/* Sayfa Altlığı */
footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
