body {
  margin: 0;
  font-family: 'Noto Sans Georgian', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111;
  background: #ffffff;
}

header {
  padding: 30px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

header .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #002b5c;
  text-decoration: none;
}

header .logo img {
  height: 180px;
  display: block;
}

h1 {
  text-align: center;
  margin-top: 40px;
  font-size: 2.5rem;
  color: #002b5c;
}

.intro {
  max-width: 720px;
  margin: 10px auto 0;
  padding: 0 20px;
  text-align: center;
  color: #555;
  line-height: 1.6;
  font-size: 0.98rem;
}

.timeline {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.line {
  display: none;
}

.entry {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.year-bg {
  font-size: 2.5rem;
  color: #002b5c;
  margin-bottom: 10px;
  font-weight: 600;
}

.date {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.content p {
  color: #555;
  line-height: 1.6;
}

.site-footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #e0e0e0;
  font-family: 'Noto Sans Georgian', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.site-footer a {
  color: #00695c;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header {
    padding: 20px;
  }

  header .logo img {
    height: 130px;
  }

  h1 {
    font-size: 2rem;
    margin-top: 30px;
  }

  .intro {
    font-size: 0.9rem;
  }
}
