* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; line-height:1.6; color:#333; }
.site-header {
  background: #003366;
  color: #fff;
  display:flex; align-items:center;
  padding:10px 20px;
}
.site-header .logo img { height:20px; background: white;border-radius: 100%;}
.site-nav ul { list-style:none; display:flex; gap:15px; margin-left:auto; }
.site-nav a { color:#fff; text-decoration:none; padding:8px; }
.site-nav a:hover { background:rgba(255,255,255,0.2); border-radius:4px; }
	a {text-decoration: none;}

.hero {
  position:relative;
  background:#333 url('banner-tqb.jpg') center/cover no-repeat;
  height:60vh;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}
.hero-content { position:relative; z-index:1; }
.btn-primary {
  display:inline-block;
  margin-top:15px;
  padding:10px 20px;
  background:#ffcc00;
  color:#003366;
  text-decoration:none;
  border-radius:4px;
}
.btn-primary:hover {
  background:#e6b800;
}
.section { padding:40px 20px; max-width:1100px; margin:auto; }
.section h2 { margin-bottom:20px; color:#003366; }
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px,1fr));
  gap:20px;
}
.card {
  border:1px solid #ddd;
  padding:20px;
  border-radius:8px;
  background:#fafafa;
}
.site-footer {
  background:#f5f5f5;
  text-align:center;
  padding:20px;
  font-size:0.9em;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #003366;
  transition: all 0.3s ease;
}
.sticky.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.swiper {
  width: 100%;
  padding: 30px 0;
}
.swiper-slide {
  background: #f0f0f0;
  padding: 20px 50px;
  border-radius: 10px;
}
.swiper-slide h3 {
  margin-bottom: 10px;
  color: #003366;
  text-align: center;
  
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.btn-icon {
  background: #ffcc00;
  color: #003366;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-icon i {
  font-size: 1.2em;
}
.btn-icon:hover {
  background: #e6b800;
  color: #000;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 40px 20px;
}

.icon-button {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 4px 6px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #003366;
  transition: transform 0.2s ease;
}
.icon-button:hover {
  transform: translateY(-5px);
  box-shadow: 6px 8px 16px rgba(0,0,0,0.15);
}

.icon-button i {
  font-size: 2em;
  color: #ff9900;
  margin-bottom: 8px;
}

.icon-label {
  font-size: 0.9em;
  color: #003366;
  margin-top: 5px;
}
