/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 360px 0 15px;
  text-align: left;
}



/* Header Styles */
#header {
  background-color: white;
}

.header-top-bar {
  background: #0f4b63;
  height: 8px;
}

.branding {
  padding: 14px 0;
  border-bottom: 1px solid #e6e9ed;
  background-color: white;
}

.branding .container {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 0 0 0 0;
}

/* Logo */
.doc-logo {
  width: 480px;
  height: auto;
  display: block;
  max-height: 120px;
  object-fit: contain;
  margin-left: -160px;
}

/* Main Content */
.main-content {
  background-color: white;
  min-height: 100vh;
  padding: 30px 0;
}

/* Typography */
h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1d2731;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d2731;
  margin: 30px 0 15px 0;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
  font-size: 1rem;
}



/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.875rem;
}

table th,
table td {
  padding: 10px;
  vertical-align: top;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
}

table th {
  font-weight: 600;
  color: #1d2731;
}

table th[scope="row"] {
  width: 150px;
}

table thead th {
  border-bottom: 2px solid #1d2731;
  font-weight: 700;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1d2731;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: #004499;
}

a:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .doc-logo {
    width: 400px;
    max-height: 100px;
    margin-left: -80px;
  }
  
  table th[scope="row"] {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .doc-logo {
    width: 320px;
    max-height: 90px;
    margin-left: -100px;
  }
  
  table {
    font-size: 0.8rem;
  }
  
  table th,
  table td {
    padding: 8px 6px;
  }
  
  table th[scope="row"] {
    width: 100px;
  }
}
  