body {
  background-color: #0a0a0b;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0a0a0b;
  background-image: 
    /* Fine minimalist grid */
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    /* Symmetrical Liquid Silver and Gold */
    radial-gradient(ellipse at center, rgba(243, 224, 58, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse at center, rgba(176, 190, 197, 0.6) 0%, transparent 75%);
  background-size: 50px 50px, 50px 50px, 100% 800px, 100% 800px;
  background-repeat: repeat, repeat, repeat-y, repeat-y;
  animation: flow-liquid 7s linear infinite;
  pointer-events: none;
}

@keyframes flow-liquid {
  0% { 
    background-position: 0 0, 0 0, 0 0, 0 400px; /* Offset by exactly half the wave length */
  }
  100% { 
    background-position: 0 0, 0 0, 0 800px, 0 1200px; 
  }
}

.docs-container {
  padding: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.doc-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-left: 5px solid #a9a9a9;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.doc-link:hover {
  background-color: #f3e03a;
  border-left-color: #333;
  color: #000;
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.doc-icon {
  font-size: 24px;
  margin-right: 15px;
}

.contact-info-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.9) 100%);
  padding: 10px 0 0 0; 
  text-align: center;
  border-bottom: none;
  border-top: 3px solid #f3e03a;
  line-height: 1.6;
  font-size: 18px;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  position: relative;
  z-index: 90;
}

.title-ribbon {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px 0;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 80;
}

.sub-title {
  text-align: center;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 800;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
}

.page-description {
  text-align: center;
  color: #444; /* Consistent color */
  margin: 15px 0;
  font-size: 15px;
  font-style: italic;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 768px) {
  .sub-title {
    font-size: clamp(14px, 4.2vw, 18px);
    white-space: nowrap;
    letter-spacing: 0.3px;
  }
}

.main-content {
  flex: 1;
}

/* iPad and Tablet background override - NO CHANGES TO DESKTOP VIEW ABOVE */
@media screen and (max-width: 1300px) {
  body::before {
    background-image: 
      linear-gradient(180deg, 
        rgba(243, 224, 58, 0.8) 0%, 
        rgba(243, 224, 58, 0.8) 15%,
        rgba(176, 190, 197, 0.9) 40%, 
        rgba(176, 190, 197, 0.9) 60%,
        rgba(243, 224, 58, 0.8) 85%,
        rgba(243, 224, 58, 0.8) 100%) !important;
    background-size: 100% 600px !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    filter: blur(20px) !important;
    animation: flow-waves-tablet 5s linear infinite !important;
  }

  @keyframes flow-waves-tablet {
    from { background-position: center 0; }
    to { background-position: center 600px; }
  }
}