* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.6;
}
body {
  font-family: "Noto Sans", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 78px;
  border-bottom: 1px solid rgba(233,236,239,0.5);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.site-header .container {
  width: 100%;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
}
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 120px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 4px;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}
.nav-link {
  color: #143463;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-link:hover {
  color: #122f59;
}
.header-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-actions {
    display: none;
  }
}
.btn-track {
  height: 40px;
  padding: 0 24px;
  background-color: #143463;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
}
.btn-track:hover {
  background-color: #122f59;
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
}
.hamburger-menu:focus {
  outline: none;
}
.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #143463;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(233,236,239,0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav.active {
  max-height: 520px;
}
.mobile-nav-link {
  display: block;
  padding: 24px 20px;
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(233,236,239,0.5);
  transition: all 0.3s ease;
}
.mobile-nav-link:hover {
  background-color: rgba(20,52,99,0.05);
  color: #122f59;
}
.mobile-nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-link.mobile-nav-track {
  background-color: #143463;
  color: #fff;
  font-weight: 600;
}
.mobile-nav-link.mobile-nav-track:hover {
  background-color: #122f59;
  color: #fff;
}
.main-content {
  padding: 0;
  padding-top: 78px;
}
.section {
  padding: 48px 0;
  background-color: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 0;
}
.hero-section {
  text-align: center;
  padding: 48px 0;
  background-color: #143463;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vw;
}
.hero-section .container {
  width: 100%;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.hero-actions .btn-primary {
  background-color: #fff;
  color: #143463;
  border: 2px solid #fff;
}
.hero-actions .btn-primary:hover {
  background-color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}
.hero-actions .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-actions .btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.trust-bar {
  background-color: #fff;
  padding: 32px 0;
}
.trust-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.trust-logo:hover {
  opacity: 1;
}
.trust-logo .logo-placeholder {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: 1px dashed #d0d0d0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
  filter: grayscale(100%);
}
.trust-logo:nth-child(1) .logo-placeholder {
  background-color: transparent;
  border-color: #b0b0b0;
  color: #666;
}
.trust-logo:nth-child(2) .logo-placeholder {
  background-color: transparent;
  border-color: #a0a0a0;
  color: #777;
}
.trust-logo:nth-child(3) .logo-placeholder {
  background-color: transparent;
  border-color: #909090;
  color: #888;
}
.trust-logo:nth-child(4) .logo-placeholder {
  background-color: transparent;
  border-color: #808080;
  color: #999;
}
.compliance-badges-bar {
  background-color: #fff;
  padding: 32px 0;
}
.compliance-badges-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.compliance-badge {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.compliance-badge:hover {
  opacity: 1;
}
.compliance-badge .badge-placeholder {
  width: 100%;
  height: 60px;
  background-color: transparent;
  border: 1px dashed #d0d0d0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
  filter: grayscale(100%);
}
.compliance-badge:nth-child(1) .badge-placeholder {
  background-color: transparent;
  border-color: #b0b0b0;
  color: #666;
}
.compliance-badge:nth-child(2) .badge-placeholder {
  background-color: transparent;
  border-color: #a0a0a0;
  color: #777;
}
.compliance-badge:nth-child(3) .badge-placeholder {
  background-color: transparent;
  border-color: #909090;
  color: #888;
}
.compliance-badge:nth-child(4) .badge-placeholder {
  background-color: transparent;
  border-color: #808080;
  color: #999;
}
.solutions-section {
  background-color: #f8f9fa;
}
.solutions-section .solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
@media (min-width: 1024px) {
  .solutions-section .solutions-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.solution-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.solution-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.solution-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}
.solution-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.solution-link:hover {
  text-decoration: underline;
}
.how-we-work-section {
  background-color: #143463;
  color: #fff;
}
.how-we-work-section .section-title {
  color: #fff;
}
.how-we-work-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}
.workflow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  margin-top: 48px;
}
.workflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.workflow-step:last-child .step-arrow {
  display: none;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #143463;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-icon-placeholder {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  background-color: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-description {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 0;
}
.step-arrow {
  position: absolute;
  top: 20px;
  right: -30px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .step-arrow {
    display: none;
  }
}
.expertise-section {
  background-color: #fff;
}
.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.expertise-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise-image-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.expertise-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.expertise-feature {
  display: flex;
  gap: 16px;
  align-items: start;
}
.feature-icon-placeholder {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: #143463;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
}
.feature-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
}
.expertise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
}
.global-network-section {
  background-color: #efefef;
}
.global-network-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.network-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: none;
}
.network-locations {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.location-item {
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #143463;
  transition: all 0.3s ease;
}
.location-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.location-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
}
.location-address {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.location-details {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
}
.location-contact {
  font-size: 0.875rem;
  font-weight: 300;
  color: #143463;
  margin-bottom: 0;
}
.insight-section {
  background-color: #fff;
}
.insight-section .section-title {
  color: #143463;
}
.insight-section .section-subtitle {
  color: #333;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.insight-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.insight-image-placeholder {
  width: 100%;
  height: 200px;
  background-color: rgba(20,52,99,0.05);
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px dashed rgba(20,52,99,0.3);
}
.insight-content {
  padding: 32px;
}
.insight-date {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(51,51,51,0.6);
  margin-bottom: 8px;
}
.insight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  line-height: 1.4;
}
.insight-excerpt {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}
.insight-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.insight-link:hover {
  text-decoration: underline;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-image-placeholder {
  width: 100%;
  height: 300px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.support-section {
  background-color: #f8f9fa;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.support-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.support-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.support-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.support-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-cta-section {
  background-color: #143463;
  color: #fff;
  padding: 48px 0;
}
.cta-content {
  text-align: center;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
}
.cta-form-placeholder {
  max-width: 600px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field-placeholder {
  width: 100%;
  height: 50px;
  background-color: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 300;
}
.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}
.contact-info-item {
  text-align: center;
}
.info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.info-value {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1;
}
.btn-primary {
  background-color: #143463;
  color: #fff;
  border: 2px solid #143463;
  box-sizing: border-box;
}
.btn-primary:hover {
  background-color: #122f59;
  border-color: #122f59;
}
.btn-secondary {
  background-color: transparent;
  color: #143463;
  border: 2px solid #143463;
  box-sizing: border-box;
}
.btn-secondary:hover {
  background-color: #143463;
  color: #fff;
  border-color: #143463;
}
.site-footer {
  background-color: #143463;
  color: #fff;
  padding: 48px 0 calc((spacing-lg + 60px));
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand .logo-placeholder {
  margin-bottom: 16px;
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}
.footer-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.language-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.language-link:hover {
  color: #fff;
}
.language-link.active {
  color: #fff;
  font-weight: 700;
}
.language-separator {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.footer-description {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-icon {
  text-decoration: none;
  display: inline-block;
}
.social-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.social-icon-placeholder:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 70px;
  }
}
.site-footer__copy {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-legal-links {
    justify-content: center;
  }
}
.footer-legal-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
.footer-legal-link:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .main-content {
    padding-top: 0;
  }
  .site-header {
    height: auto;
    min-height: 78px;
    position: relative;
  }
  .header-content {
    flex-direction: row;
    height: 78px;
    padding: 0;
    gap: 0;
    position: relative;
  }
  .logo-placeholder {
    height: 32px;
    min-width: 100px;
  }
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .trust-bar-content {
    flex-direction: column;
    gap: 24px;
  }
  .trust-logo {
    min-width: 100%;
    max-width: 100%;
  }
  .compliance-badges-content {
    flex-direction: column;
    gap: 24px;
  }
  .compliance-badge {
    min-width: 100%;
    max-width: 100%;
  }
  .workflow-steps {
    flex-direction: column;
    gap: 32px;
  }
  .workflow-step {
    width: 100%;
  }
  .step-arrow {
    display: none;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-column {
    margin-bottom: 24px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .expertise-section.section {
    padding: 0;
  }
  .expertise-section.section .container {
    padding: 0;
  }
  .expertise-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .expertise-image {
    order: 2;
  }
  .expertise-text {
    order: 1;
  }
  .expertise-image-placeholder {
    height: 300px;
  }
  .expertise-features {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .expertise-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    padding: 0 20px;
  }
  .global-network-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .network-map {
    order: 2;
  }
  .network-locations {
    order: 1;
  }
  .map-iframe {
    height: 300px;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .cta-contact-info {
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-content {
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 24px;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 24px;
  }
  .solutions-section .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-content {
    grid-template-columns: 1fr;
  }
  .expertise-features {
    grid-template-columns: 1fr;
  }
  .expertise-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-background-placeholder {
  width: 100%;
  height: 300px;
  margin: 32px auto;
  background-color: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
}
.challenges-solutions-section {
  background-color: #f8f9fa;
}
.challenges-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .challenges-solutions-grid {
    grid-template-columns: 1fr;
  }
}
.challenges-column,
.solutions-column {
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.challenges-title,
.solutions-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
}
.challenges-list,
.solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.challenge-item,
.solution-item {
  padding: 16px 24px;
  margin-bottom: 8px;
  border-left: 3px solid #bb2749;
  background-color: rgba(187,39,73,0.05);
  font-size: 16px;
  color: #333;
}
.solution-item {
  border-left-color: #143463;
  background-color: rgba(20,52,99,0.05);
}
.service-levels-section {
  background-color: #fff;
}
.service-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .service-levels-grid {
    grid-template-columns: 1fr;
  }
}
.service-level-card {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-level-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
}
.service-level-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-item {
  text-align: left;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
}
.detail-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(51,51,51,0.6);
  margin-bottom: 8px;
  display: block;
}
.detail-value {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
}
.packaging-monitoring-section {
  background-color: #f8f9fa;
}
.packaging-monitoring-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
.packaging-section {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  background-color: #fff;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
@media (max-width: 1024px) {
  .packaging-section {
    flex-direction: column;
  }
}
.packaging-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.packaging-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 250px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.packaging-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.packaging-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  text-align: left;
}
.packaging-description p {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}
.packaging-description p:last-child {
  margin-bottom: 0;
}
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.packaging-item {
  text-align: center;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.packaging-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.packaging-label {
  font-size: 16px;
  font-weight: 500;
  color: #143463;
}
.monitoring-section {
  display: flex;
  flex-direction: row-reverse;
  gap: 48px;
  align-items: center;
  background-color: #fff;
  padding: 48px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
@media (max-width: 1024px) {
  .monitoring-section {
    flex-direction: column;
  }
}
.monitoring-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.monitoring-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 250px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.monitoring-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.monitoring-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  text-align: left;
}
.monitoring-description p {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}
.monitoring-description p:last-child {
  margin-bottom: 0;
}
.monitoring-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .monitoring-features {
    grid-template-columns: 1fr;
  }
}
.monitoring-feature-item {
  text-align: center;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.monitoring-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.monitoring-label {
  font-size: 16px;
  font-weight: 500;
  color: #143463;
}
.logistics-timeline-section {
  background-color: #143463;
  color: #fff;
}
.logistics-timeline-section .section-title {
  color: #fff;
}
.logistics-timeline-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}
.timeline-intro {
  max-width: 800px;
  margin: 32px auto 48px;
  text-align: center;
}
.timeline-intro-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin: 0;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #143463;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-icon-placeholder {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  background-color: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-badge {
  display: inline-block;
  padding: 2px 8px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-left: 8px;
  vertical-align: middle;
}
.step-description {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.case-studies-section {
  background-color: #fff;
}
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}
.case-study-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.case-study-image-placeholder {
  width: 100%;
  height: 200px;
  background-color: rgba(20,52,99,0.05);
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px dashed rgba(20,52,99,0.3);
}
.case-study-content {
  padding: 32px;
}
.case-study-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.case-study-excerpt {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}
.case-study-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.case-study-link:hover {
  text-decoration: underline;
}
.compliance-section {
  background-color: #f8f9fa;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.compliance-item {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.compliance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.compliance-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.compliance-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
}
.compliance-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
}
.industry-use-cases-section {
  background-color: #fff;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.industry-item {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.industry-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.industry-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
}
.cta-footer-section {
  background-color: #143463;
  color: #fff;
  padding: 48px 0;
}
.cta-footer-section.expertise-cta-section {
  padding: 32px 0;
}
.cta-footer-content {
  text-align: center;
}
.cta-footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.expertise-cta-section .cta-footer-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-footer-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
}
.expertise-cta-section .cta-footer-subtitle {
  font-size: 16px;
  margin-bottom: 24px;
}
.cta-footer-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-footer-actions {
    flex-direction: column;
    align-items: center;
  }
}
.cta-footer-actions .btn-primary {
  background-color: #fff;
  color: #143463;
  border-color: #fff;
}
.cta-footer-actions .btn-primary:hover {
  background-color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}
.cta-footer-actions .btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.cta-footer-actions .btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.industry-section {
  background-color: #f8f9fa;
}
.industry-section:nth-child(even) {
  background-color: #fff;
}
.industry-section-content {
  display: flex;
  gap: 48px;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .industry-section-content {
    flex-direction: column;
    min-height: auto;
  }
}
.industry-layout-left-image {
  flex-direction: row;
}
@media (max-width: 1024px) {
  .industry-layout-left-image {
    flex-direction: column;
  }
}
.industry-layout-right-image {
  flex-direction: row-reverse !important;
}
@media (max-width: 1024px) {
  .industry-layout-right-image {
    flex-direction: column !important;
  }
}
.industry-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.industry-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 0;
}
.industry-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
}
.industry-section-description {
  font-size: 1.25rem;
  font-weight: 500;
  color: #143463;
  margin-bottom: 32px;
  line-height: 1.6;
}
.industry-details p {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}
.industry-cta margin-top spacing-lg:last-child {
  margin-bottom: 0;
}
.supporting-note-section {
  background-color: #fff;
}
.supporting-note-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.supporting-note-text {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
.industry-context-section {
  background-color: #fff;
}
.industry-context-content {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .industry-context-content {
    flex-direction: column;
  }
}
.industry-context-visual {
  flex: 1;
}
.industry-context-image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 350px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.industry-context-text {
  flex: 1;
}
.industry-context-title {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 32px;
  line-height: 1.3;
}
.industry-context-description p {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.9;
  margin-bottom: 24px;
}
.industry-context-description p:last-child {
  margin-bottom: 0;
}
.biotech-challenges-section {
  background-color: #f8f9fa;
}
.biotech-challenges-list {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.biotech-challenge-item {
  display: flex;
  gap: 32px;
  align-items: start;
  background-color: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.biotech-challenge-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateX(5px);
}
.challenge-icon-placeholder {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.challenge-content {
  flex: 1;
}
.challenge-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.challenge-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.biotech-solutions-section {
  background-color: #fff;
}
.biotech-solutions-layout {
  max-width: 1000px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.solution-group {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 12px;
}
.solution-group:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .solution-group {
    flex-direction: column !important;
  }
}
.solution-visual {
  flex: 1;
}
.solution-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 250px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.solution-details {
  flex: 1;
}
.solution-group-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.solution-group-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
.outcomes-section {
  background-color: #143463;
  color: #fff;
}
.outcomes-section .section-title {
  color: #fff;
}
.outcomes-section .section-subtitle {
  color: rgba(255,255,255,0.9);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}
.outcome-card {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.outcome-card:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}
.outcome-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(255,255,255,0.2);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.outcome-metric {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.outcome-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.biotech-case-study-section {
  background-color: #f8f9fa;
}
.biotech-case-study-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .biotech-case-study-content {
    flex-direction: column;
  }
}
.case-study-visual {
  flex: 1;
}
.case-study-image-placeholder {
  width: 100%;
  max-width: 450px;
  height: 350px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.case-study-text {
  flex: 1;
}
.case-study-title {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  line-height: 1.3;
}
.case-study-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 32px;
}
.case-study-outcome {
  padding: 32px;
  background-color: #fff;
  border-left: 4px solid #143463;
  border-radius: 8px;
  margin-bottom: 32px;
}
.outcome-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.outcome-text {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.case-study-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.case-study-link:hover {
  text-decoration: underline;
}
.biotech-faq-section {
  background-color: #fff;
}
.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
}
.faq-item {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background-color: rgba(20,52,99,0.02);
}
.faq-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin: 0;
  flex: 1;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #143463;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 32px 32px 32px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
}
.biotech-cta-section {
  background-color: #143463;
  color: #fff;
  padding: 48px 0;
}
.biotech-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.biotech-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.biotech-cta-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  line-height: 1.7;
}
.biotech-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.industries-overview-section {
  padding: 48px 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
.industry-card {
  display: block;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  text-align: center;
}
.industry-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: #143463;
}
.industry-card-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.industry-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.industry-card-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.industry-hero-section .hero-background-placeholder {
  width: 100%;
  height: 300px;
  margin-top: 32px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.industry-context-section {
  padding: 48px 0;
}
.industry-context-content {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .industry-context-content {
    flex-direction: column;
  }
}
.industry-context-visual {
  flex: 1;
}
.industry-context-image-placeholder {
  width: 100%;
  max-width: 500px;
  height: 350px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.industry-context-text {
  flex: 1;
}
.industry-context-list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}
.industry-context-list li {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-left: 32px;
  position: relative;
}
.industry-context-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #143463;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.industry-challenges-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }
}
.challenge-item {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.challenge-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.challenge-icon-placeholder {
  width: 40px;
  height: 40px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.challenge-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  margin-top: 0;
}
.challenge-subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  margin: 0;
  line-height: 1.6;
}
.challenge-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  margin: 0;
}
.industry-solutions-section {
  padding: 48px 0;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}
.solution-item:hover {
  background-color: rgba(20,52,99,0.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.solution-icon-placeholder {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin: 0 auto;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.solution-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
.industry-case-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.case-card {
  max-width: 800px;
  margin: 48px auto 0;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.case-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.case-image-placeholder {
  width: 100%;
  height: 250px;
  background-color: rgba(20,52,99,0.05);
  border-bottom: 1px dashed rgba(20,52,99,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.case-content {
  padding: 32px;
}
.case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.case-summary {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}
.case-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.case-link:hover {
  text-decoration: underline;
}
.industry-faq-section {
  padding: 48px 0;
}
.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.faq-answer {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.expertise-hero-section .hero-background-placeholder {
  width: 100%;
  height: 300px;
  margin-top: 32px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
}
.expertise-cards-section {
  padding: 48px 0;
}
.expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .expertise-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .expertise-cards-grid {
    grid-template-columns: 1fr;
  }
}
.expertise-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.expertise-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: #143463;
}
.expertise-card-icon-placeholder {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.expertise-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  margin-top: 0;
}
.expertise-card-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.compliance-summary {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.compliance-summary-text {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
}
.compliance-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.compliance-summary-list li {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 32px;
  position: relative;
}
.compliance-summary-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #143463;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}
.certificates-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.certificates-list {
  max-width: 900px;
  margin: 48px auto 0;
}
.certificate-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.certificate-list-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-color: #143463;
}
.certificate-list-item:last-child {
  margin-bottom: 0;
}
.certificate-list-icon-placeholder {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 6px;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.certificate-list-content {
  flex: 1;
}
.certificate-list-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.4;
}
.certificate-list-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.resources-hero-section .hero-background-placeholder {
  display: none;
}
.resources-grid-section {
  padding: 48px 0;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}
.resource-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.resource-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: #143463;
}
.resource-card-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(128,128,128,0.1);
  border: 1px dashed rgba(128,128,128,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.resource-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  margin-top: 0;
}
.resource-card-description {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
}
.resource-card .btn {
  margin-top: auto;
}
.resources-faq-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.resources-faq-section .faq-list {
  max-width: 900px;
  margin: 48px auto 0;
}
.resources-cta-section {
  padding: 32px 0;
}
.breadcrumb-section {
  padding: 24px 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #333;
}
.breadcrumb-item {
  color: #333;
}
.breadcrumb-separator {
  color: #999;
  margin: 0 8px;
}
.breadcrumb-current {
  color: #143463;
  font-weight: 500;
}
.resources-listing-hero {
  padding: 48px 0 24px 0;
}
.resources-listing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.resources-listing-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 8px;
}
.resources-listing-meta {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  margin: 0;
}
.resources-filter-bar {
  padding: 24px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}
.filter-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .filter-bar-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.filter-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.filter-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.filter-pills {
  display: flex;
  gap: 16px;
}
.filter-pill {
  padding: 8px 24px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-pill:hover {
  border-color: #143463;
  color: #143463;
}
.filter-pill.active {
  background-color: #143463;
  border-color: #143463;
  color: #fff;
}
.filter-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sort-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.sort-select {
  padding: 8px 24px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #333;
  background-color: #fff;
  cursor: pointer;
}
.resources-listing-content {
  padding: 48px 0;
}
.resources-listing-layout {
  display: flex;
  gap: 48px;
}
@media (max-width: 1024px) {
  .resources-listing-layout {
    flex-direction: column;
  }
}
.resources-listing-main {
  flex: 0 0 70%;
}
@media (max-width: 1024px) {
  .resources-listing-main {
    flex: 1;
  }
}
.resource-post-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.resource-post-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.resource-post-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #143463;
}
.resource-post-category {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(20,52,99,0.1);
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 16px;
}
.resource-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.4;
}
.resource-post-meta {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 24px;
}
.resource-post-excerpt {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
}
.resource-post-link {
  display: inline-block;
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.resource-post-link:hover {
  text-decoration: underline;
}
.resources-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e9ecef;
}
.pagination-btn {
  padding: 8px 24px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-btn:hover:not(:disabled) {
  border-color: #143463;
  color: #143463;
}
.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-number {
  padding: 8px 24px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination-number:hover {
  border-color: #143463;
  color: #143463;
}
.pagination-number.active {
  background-color: #143463;
  border-color: #143463;
  color: #fff;
}
.resources-listing-sidebar {
  flex: 0 0 30%;
}
@media (max-width: 1024px) {
  .resources-listing-sidebar {
    flex: 1;
  }
}
.sidebar-widget {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  margin-top: 0;
}
.sidebar-search {
  display: flex;
  gap: 8px;
}
.sidebar-search-input {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
}
.sidebar-search-btn {
  padding: 8px 24px;
  background-color: #143463;
  border: 1px solid #143463;
  border-radius: 6px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar-search-btn:hover {
  background-color: #0f2647;
}
.sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-categories-list li {
  margin-bottom: 8px;
}
.sidebar-categories-list li:last-child {
  margin-bottom: 0;
}
.sidebar-category-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;
}
.sidebar-category-link:hover {
  color: #143463;
  text-decoration: underline;
}
.sidebar-featured-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-featured-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}
.sidebar-featured-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.sidebar-featured-title {
  font-size: 16px;
  font-weight: 500;
  color: #143463;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.4;
}
.sidebar-featured-meta {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
}
.article-header-main {
  margin-bottom: 48px;
}
.article-category {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(20,52,99,0.1);
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 24px;
}
.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  line-height: 1.3;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: #666;
}
.article-meta-item {
  font-weight: 300;
}
.article-meta-separator {
  color: #999;
}
.article-intro {
  font-size: 1.25rem;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
}
.article-intro p {
  margin: 0;
}
.article-sidebar {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .article-sidebar {
    display: none;
  }
}
.key-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.key-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.key-detail-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.key-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.sidebar-article-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1.4;
}
.sidebar-article-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
}
.sidebar-article-excerpt p {
  margin: 0;
  margin-bottom: 16px;
}
.sidebar-article-excerpt p:last-child {
  margin-bottom: 0;
}
.article-featured-image-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 48px;
}
.article-content-section {
  padding: 48px 0;
}
.article-content-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .article-content-layout {
    flex-direction: column;
  }
}
.article-content-main {
  flex: 1;
  min-width: 0;
}
.article-content-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #143463;
  margin-top: 48px;
  margin-bottom: 32px;
}
.article-content-heading:first-child {
  margin-top: 0;
}
.article-content-paragraph {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 24px;
}
.article-content-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.article-content-list li {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}
.article-content-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #143463;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}
.article-results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .article-results-stats {
    grid-template-columns: 1fr;
  }
}
.result-stat-item {
  text-align: center;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}
.result-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
  line-height: 1;
}
.result-stat-caption {
  font-size: 0.875rem;
  font-weight: 300;
  color: #333;
  line-height: 1.5;
}
.article-footer-section {
  padding: 48px 0;
}
.article-footer-divider {
  height: 1px;
  background-color: #e9ecef;
  margin-bottom: 32px;
}
.article-back-link {
  margin-bottom: 48px;
}
.article-back-link-text {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.article-back-link-text:hover {
  text-decoration: underline;
}
.article-footer-cta {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.article-footer-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  margin-top: 0;
}
.article-footer-cta-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #333;
  margin-bottom: 24px;
}
.related-resources-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.related-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .related-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-resources-grid {
    grid-template-columns: 1fr;
  }
}
.related-resource-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.related-resource-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: #143463;
}
.related-resource-category {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(20,52,99,0.1);
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 16px;
}
.related-resource-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
  margin-top: 0;
  line-height: 1.4;
}
.related-resource-meta {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 16px;
}
.related-resource-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.related-resource-link:hover {
  text-decoration: underline;
}
.company-hero-section .hero-background-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(20,52,99,0.1);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 32px;
}
.company-about-section {
  background-color: #f8f9fa;
  padding: 48px 0;
}
.company-about-content {
  max-width: 900px;
  margin: 0 auto 48px;
}
.company-about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 48px;
  font-weight: 300;
  text-align: center;
}
.company-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .company-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .company-highlights-grid {
    grid-template-columns: 1fr;
  }
}
.highlight-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #143463;
}
.highlight-icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
}
.highlight-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  margin: 0;
}
.company-leadership-section {
  padding: 48px 0;
  background-color: #fff;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}
.leadership-card {
  text-align: center;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.leadership-photo-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.leadership-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 8px;
}
.leadership-title {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
}
.leadership-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  margin: 0;
}
.company-network-section {
  padding: 48px 0;
}
.global-network-content {
  margin-top: 48px;
}
.network-map-container {
  width: 100%;
  margin-bottom: 48px;
}
.network-map-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 24px;
}
.network-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.network-highlight-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.3s ease;
}
.network-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #143463;
}
@media (max-width: 768px) {
  .network-highlight-card {
    flex-direction: column;
    text-align: center;
  }
}
.network-highlight-icon-placeholder {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background-color: rgba(20,52,99,0.05);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143463;
  font-size: 0.875rem;
  font-weight: 500;
}
.network-highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  margin-top: 0;
}
.network-highlight-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  margin: 0;
}
.company-newsroom-section {
  padding: 48px 0;
}
.newsroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .newsroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .newsroom-grid {
    grid-template-columns: 1fr;
  }
}
.newsroom-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.newsroom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.newsroom-date {
  font-size: 0.875rem;
  color: #666;
  font-weight: 300;
  margin-bottom: 16px;
}
.newsroom-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 16px;
  line-height: 1.4;
}
.newsroom-summary {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  margin-bottom: 24px;
}
.newsroom-link {
  color: #143463;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.newsroom-link:hover {
  text-decoration: underline;
}
.company-cta-section {
  background-color: #143463;
  color: #fff;
}
.company-cta-section .cta-footer-title {
  color: #fff;
}
.company-cta-section .cta-footer-subtitle {
  color: rgba(255,255,255,0.9);
}
.contact-hero-section .hero-background-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(20,52,99,0.1);
  border: 1px dashed rgba(20,52,99,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 32px;
}
.contact-form-section {
  padding: 48px 0;
  background-color: #f8f9fa;
}
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form {
  margin-top: 48px;
}
.form-row {
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group.form-group-required .form-label::after {
  content: " *";
  color: #bb2749;
}
.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #143463;
  margin-bottom: 16px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #143463;
  box-shadow: 0 0 0 3px rgba(20,52,99,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 150px;
}
.form-select {
  background-color: #fff;
  cursor: pointer;
}
.form-actions {
  margin-top: 48px;
  text-align: center;
}
.contact-regions-section {
  margin-top: 48px;
  margin-bottom: 48px;
}
.contact-regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .contact-regions-grid {
    grid-template-columns: 1fr;
  }
}
.region-contact-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}
.region-contact-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #143463;
}
.region-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #143463;
  margin-bottom: 32px;
}
.region-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.language-switcher-fixed {
  position: fixed;
  bottom: 0;
  right: 32px;
  z-index: 10000;
  font-family: "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .language-switcher-fixed {
    right: 24px;
  }
}
.language-switcher-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  min-width: 120px;
  justify-content: flex-start;
}
.language-switcher-btn:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.language-switcher-btn:active {
  transform: translateY(0);
}
.language-switcher-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #143463;
  flex-shrink: 0;
}
.language-switcher-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.language-switcher-text {
  white-space: nowrap;
  color: #333;
}
.language-switcher-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}
.language-switcher-fixed.active .language-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-switcher-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  text-decoration: none;
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
}
.language-switcher-option:last-child {
  border-bottom: none;
}
.language-switcher-option:hover {
  background-color: #f8f9fa;
  color: #143463;
}
.language-switcher-option .language-flag {
  font-size: 1.2rem;
  line-height: 1;
}
.language-switcher-option span {
  flex: 1;
}
.contact-info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-value {
  font-size: 16px;
  color: #333;
  font-weight: 300;
  line-height: 1.6;
}
