* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0077be;
  --primary-green: #00a651;
  --primary-gradient: linear-gradient(135deg, #0077be, #00a651);
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f5f8fa;
  --bg-white: #ffffff;
  --accent: #009fc1;
  --border-color: #e0e6ed;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--primary-blue);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  background: var(--primary-gradient);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
section {
  padding: 5rem;
  margin: 0 auto;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-top: 2rem;
  line-height: 1.8;
  max-width: 900px;
}

/* Stats Section */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.stats-grid > * {
  flex: 0 1 250px;
}

.stat-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

/* Business Areas */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.business-grid > *:first-child {
  grid-row: 1 / 3;
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.business-grid > *:first-child .business-header {
  background: var(--primary-gradient);
  padding: 2rem;
}

.business-grid > *:first-child .business-icon {
  width: 60px;
  height: 60px;
  font-size: 2rem;
}

.business-grid > *:first-child h3 {
  font-size: 1.75rem;
  margin: 0;
}

.business-grid > *:first-child .business-content {
  padding: 2rem;
}

.business-grid > *:first-child .business-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-grid > *:first-child .business-content li {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(0,119,190,0.03), rgba(0,166,81,0.03));
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
  border-bottom: none;
  transition: all 0.3s ease;
  position: relative;
}

.business-grid > *:first-child .business-content li:hover {
  background: linear-gradient(135deg, rgba(0,119,190,0.08), rgba(0,166,81,0.08));
  transform: translateX(4px);
  border-left-color: var(--primary-blue);
}

.business-grid > *:first-child .business-content li::before {
  content: '⚡';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.business-grid > *:first-child .business-content li:hover::before {
  opacity: 1;
}

.business-grid > *:first-child .business-content li strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.business-grid > *:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.business-grid > *:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.business-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.business-header {
  background: var(--primary-gradient);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.business-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.business-card h3 {
  font-size: 1.5rem;
  margin: 0;
}

.business-content {
  padding: 2rem;
}

.business-content ul {
  list-style: none;
  padding: 0;
}

.business-content li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.business-content li:last-child {
  border-bottom: none;
}

.business-content li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Projects Section */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.projects-grid > * {
  flex: 0 1 320px;
}

.project-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-gradient);
}

.project-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.project-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(0,119,190,0.1), rgba(0,166,81,0.1));
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.project-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.project-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1rem;
}

/* Leadership Section */
.leadership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.leadership-grid > * {
  flex: 0 1 330px;
}

.leader-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.leader-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.leader-role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Regulatory Section */
.regulatory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.regulatory-grid > * {
  flex: 0 1 300px;
}

.regulatory-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.regulatory-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.regulatory-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.regulatory-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.coming-soon {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0,119,190,0.05), rgba(0,166,81,0.05));
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-top: 2rem;
}

/* Values & Philosophy */
.values-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.value-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 350px;
  text-align: center;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0,119,190,0.3);
}

.value-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

/* Document List */
.document-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Skeleton Loader */
.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-row {
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-left: 4px solid transparent;
}

.skeleton-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skeleton-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-text {
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-text.title {
  width: 60%;
  height: 22px;
}

.skeleton-text.short {
  width: 40%;
  height: 16px;
}

.skeleton-meta {
  display: flex;
  gap: 2rem;
}

.skeleton-meta .skeleton-text {
  width: 100px;
  height: 16px;
}

.skeleton-button {
  width: 120px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.document-row {
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.document-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-green);
}

.document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.document-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.document-icon {
  font-size: 1.5rem;
}

.document-meta {
  display: flex;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.document-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.document-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-download {
  padding: 0.75rem 1.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,119,190,0.3);
}

.btn-view {
  padding: 0.75rem 1.5rem;
  background: var(--bg-light);
  color: var(--primary-blue);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-view:hover {
  background: var(--bg-white);
  border-color: var(--primary-blue);
}

.document-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(0,119,190,0.1), rgba(0,166,81,0.1));
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Contact Info */
.contact-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.contact-unified-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-unified-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0 2rem;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.contact-row:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0,119,190,0.3);
}

.contact-info {
  flex: 1;
}

.contact-info h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.125rem;
}

.contact-info strong {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-info a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.contact-info a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-green);
}

.contact-info a:hover::after {
  width: 100%;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.footer-content > * {
  flex: 0 1 200px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background: var(--primary-gradient);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* Facility Highlight */
.facility-highlight {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--primary-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.facility-highlight h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.facility-highlight p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Page Header (for internal pages) */
.page-header {
  background: var(--primary-gradient);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  section h2 {
    font-size: 2rem;
  }

  .stats-grid > * {
    flex: 0 1 200px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-grid > *:first-child {
    grid-row: auto;
  }

  .business-grid > *:first-child .business-header {
    padding: 1.5rem;
  }

  .business-grid > *:first-child h3 {
    font-size: 1.5rem;
  }

  .business-grid > *:first-child .business-content {
    padding: 1.5rem;
  }

  .business-grid > *:nth-child(2),
  .business-grid > *:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  nav.active {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 0;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .business-grid {
    flex-wrap: wrap;
  }

  .business-grid > *,
  .projects-grid > *,
  .stats-grid > *,
  .leadership-grid > *,
  .regulatory-grid > *,
  .footer-content > * {
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }

  .contact-unified-card {
    padding: 2rem 1.5rem;
  }

  .contact-row {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 0;
  }

  .contact-divider {
    margin: 0 1rem;
  }

  .document-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .document-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .document-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-download,
  .btn-view {
    width: 100%;
    justify-content: center;
  }

  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    max-width: 100%;
  }

  .skeleton-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .skeleton-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .skeleton-meta .skeleton-text {
    width: 150px;
  }

  .skeleton-button {
    width: 100%;
  }

  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .logo-image {
    height: 40px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

