/* Genel Sayfa Ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAFAFC;
    color: #353a40;
}

/* Logo */
.logo {
    margin-top: 40px;
    text-align: center;
}

.logo img {
    width: 320px;
    margin-bottom: 15px;
}

/* Büyük Başlık */
.page-title {
    font-size: 22px;
    font-weight: bold;
    color: #353a40;
    text-align: center;
    margin-bottom: 20px;
}

/* Arama Kutusu */
.search-container {
    display: flex;
    align-items: center;
    background: #F0F1FF;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}

/* Arama Kutusu İçindeki Input */
#search-input {
    border: none;
    outline: none;
    font-size: 18px;
    padding: 10px;
    flex: 1;
    background: #F0F1FF;
    color: #25282d;
}

/* Arama Butonu */
#search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

#search-btn:hover {
    color: #666;
}

/* Açıklama */
.search-description {
    font-size: 14px;
    color: #a8afb9;
    margin-top: 10px;
    max-width: 500px;
    text-align: center;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

/* Arama Sonuçları */
#search-results {
    margin-top: 20px;
    width: 90%;
    max-width: 500px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

/* Sonuç Kartları */
.result-card {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Sonuç Başlıkları */
.result-title {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #25282d;
    display: block;
    margin-bottom: 5px;
}

/* Açıklama Metni */
.result-description {
    font-size: 14px;
    color: #25282d;
    margin-bottom: 10px;
}

/* Detaylı İncele Butonu */
.detail-btn {
    background-color: #0383BF;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.detail-btn:hover {
    background-color: #25282d;
    color: white;
}

/* İçerik Kutusu */
.content-section {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}

.content-section h2,
.content-section h3 {
    color: #25282d;
    margin-top: 20px;
}

.content-section p,
.content-section li {
    font-size: 15px;
    line-height: 1.6;
}

.content-section ul {
    padding-left: 20px;
}

/* Footer */
.footer-section {
  margin-top: 50px;
  padding: 30px 0 20px;
  text-align: center;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-buttons a {
  background-color: #F0F1FF;
  color: #25282d;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-width: 120px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
}

.footer-buttons a:hover {
  background-color: #d9dbf2;
}
