
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  scroll-behavior: smooth;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.top-bar {
  background: #f7f7f7;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.top-info h1 {
  margin: 0;
  font-size: 1.6rem;
}

.top-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.top-buttons {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.icon-btn {
  padding: 6px 14px;
  background: #004488;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.icon-btn:hover {
  background: #0066aa;
}

.hero {
  max-height: 300px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  object-fit: cover;
}

section {
  padding: 50px 20px;
  max-width: 960px;
  margin: auto;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 25px 20px;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.5s ease-out;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-info h1 {
    font-size: 1.3rem;
  }

  .top-info p {
    font-size: 0.85rem;
  }

  .top-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .icon-btn {
    font-size: 0.85rem;
  }
}
