footer {
  text-align: center;
  padding: 8px;
  background: #f5f5f5;
  color: #000;
  font-size: 11px;
}

footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4 {
  color: #004080;
  margin-top: .75rem;
  padding: .25rem;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h2 { font-size: 1.25rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: .9rem; }

p {
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.1rem; }
  p  { font-size: 1rem; }
}

/* Containers */
.content, .container, .contact-container {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 15px;
}

.contact-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* Iframe */
iframe {
  width: 100%;
  height: 600px;
  border: none;
}

@media (min-width: 768px) {
  iframe { height: 1100px; }
}

/* Decorative Line */
.center-line {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #000;
}

/* Cards */
.iprcards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #cceeff;
  border-radius: 8px;
  padding: 12px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.card h5 {
  color: #0059b3;
  margin-bottom: 6px;
  font-size: 1rem;
}

.card ul {
  list-style: none;
  padding: 0;
  font-size: .85rem;
}

.card ul li { margin: 4px 0; }

.card ul li a {
  color: #004080;
  text-decoration: none;
  transition: text-decoration .3s ease;
}

.card ul li a:hover { text-decoration: underline; }

/* Tabs */
.tab {
  margin-top: 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.tab input[type=checkbox] { display: none; }

.tab-label {
  display: block;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  color: #003366;
  background: #cce6ff;
  border-radius: 6px 6px 0 0;
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .3s ease, transform .3s ease;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
  border-radius: 0 0 6px 6px;
  padding: 0 15px;
}

.tab input:checked ~ .tab-content {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 12px 15px;
}

/* Section Titles */
.section-title {
  border-bottom: 2px solid #1e3d59;
  padding-bottom: 5px;
  margin-bottom: 20px;
  color: #1e3d59;
}

.nav-tabs .nav-link.active {
  background: #1e3d59;
  color: #fff;
}

/* New Label Badge */
.new-label {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: #e60000;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #f00, 0 0 10px #f00;
  box-shadow: 0 0 10px #f00, 0 0 20px #f33;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #f00, 0 0 10px #f00;
    box-shadow: 0 0 10px #f00, 0 0 20px #f33;
    opacity: 1;
  }
  to {
    text-shadow: 0 0 15px #f33, 0 0 25px #f66;
    box-shadow: 0 0 20px #f33, 0 0 30px #f66;
    opacity: .8;
  }
}
