body {
    background-color: #f7f7f7;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.hk-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.hk-navbar .navbar-brand {
    font-family: "Georgia", serif;
    font-weight: 600;
    color: #555;
}

.hk-navbar .nav-link {
    color: #555;
    font-weight: 500;
}

.hk-navbar .nav-link:hover {
    color: #000;
}

.hk-hero {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.hk-hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
}

.hk-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.hk-intro-img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.hk-team-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.hk-team-name {
    font-weight: 600;
    color: #333;
}

.hk-team-role {
    color: #777;
}

.hk-footer {
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0;
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Modal Animation */
.modal-dialog-zoom {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.25s ease-out;
}

.modal.show .modal-dialog-zoom {
    transform: scale(1);
    opacity: 1;
}

footer {
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  z-index: 10;
}

footer::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
  border-radius: 8px 8px 0 0;
}