* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 1.2rem;
}
.navbar li a img{
	opacity: 0.6;
	border-radius: 50%;
}
nav a img {
	border-radius: 50%;
	opacity: 0.6;
	margin-left: 15px;
}
.navbar li{
	margin-left: 15px;
}

.footer {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .fa-lg {
  transition: color 0.3s;
}

.footer .fa-lg:hover {
  color: #0d6efd;
}
.category-title {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 15px;
}

.simple-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  height: 100%; /* Yükseklik referansı için */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px; /* Masaüstünde eşit yükseklik */
}

.simple-card img {
  border-radius: 8px;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.simple-card p {
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.simple-card a {
  margin-top: auto;
}
.simple-card:hover {
  transform: translateY(-4px);
}