* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #CCE9FB;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: #333;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  z-index: 5;
  position: relative;
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo p {
  font-family: 'Inknut Antiqua', serif;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}

.breadcrumb {
  width: 70%;
  max-width: 1000px;
  margin: 20px auto;   
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
  color: #0077b6;
}

.breadcrumb span {
  color: #333;
}

.hero-title {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto 0 auto;
  font-family: 'Arial', sans-serif;
  font-weight: 790;
  font-size: 2rem;
  color: #333;
  text-align: left;
}

.card-wrapper {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.card-scroll {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1.5rem;
}


.card a {
  text-decoration: none;
  color: inherit; 
  display: block;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card h3 {
  text-align: center;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: #0077b6;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.footer {
  background: rgba(76, 96, 109, 1);
  padding: 10px 10px 20px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.footer-about p,
.footer-contact p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #EC764E;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
  font-size: 14px;
}

@media (min-width: 600px) {
  .card-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}