/* --- Original Base & Functional Styles (Adapted) --- */
html {
  scroll-behavior: smooth; /* Apply smooth scroll globally */
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc; /* Tailwind gray-50 - From Template */
  color: #1f2937; /* Tailwind gray-800 - From Template */
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-size: 16px; /* Slightly larger base font - From Template */
  line-height: 1.6; /* Improved line spacing - From Template */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle background pattern for white sections - From Template */
 .bg-white-pattern {
   /* Optional: Add this class to white background sections if desired */
   /* background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E"); */
 }

/* --- Scroll Animation Styles (From Template - More Advanced) --- */
.scroll-animate, section /* Apply base visibility logic to sections too */ {
  opacity: 0;
  transform: translateY(40px); /* Slightly less distance */
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-animate.visible, section.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-animate-left.visible { opacity: 1; transform: translateX(0); }
.scroll-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-animate-right.visible { opacity: 1; transform: translateX(0); }
.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.95); /* Subtle scale */
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.scroll-animate-scale.visible { opacity: 1; transform: scale(1); }

/* Add delays using utility classes if needed */
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; } /* Added for 4 columns */
.delay-200 { transition-delay: 0.2s; }
.delay-250 { transition-delay: 0.25s; } /* Added for 4 columns */
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; } /* Added for 4 columns */


/* --- Header Styling (Merged: Original Logic, Template Appearance) --- */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease; /* Smoother transition from template */
  background-color: transparent;
  padding-top: 1rem; padding-bottom: 1rem;
}
/* Initial state (transparent) */
#main-header nav a.logo-link { color: white; transition: color 0.3s ease; font-weight: 800; /* extabold */ }
#main-header nav .nav-link { color: #e5e7eb; /* gray-200 */ transition: color 0.3s ease; font-weight: 500; /* medium */ }
#main-header nav .nav-link:hover { color: white; }
#main-header nav .nav-button { /* Shared style for lang and more buttons */
  color: #e5e7eb; /* gray-200 */
  transition: color 0.3s ease;
  font-weight: 500;
  cursor: pointer; /* Indicate clickable */
  display: flex; /* Use flex for icon alignment */
  align-items: center;
  background: none; /* Ensure button look */
  border: none;
  padding: 0; /* Reset padding */
}
#main-header nav .nav-button:hover { color: white; }
#main-header nav .nav-button i { transition: color 0.3s ease; } /* Icon color */
#main-header .hamburger div { background-color: white; transition: background-color 0.3s ease, transform 0.4s; }

/* Scrolled state (Template Style) */
#main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97); /* Less transparent white */
  backdrop-filter: blur(10px); /* Blur effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* More pronounced shadow */
  padding-top: 0.75rem; /* Adjust padding slightly */
  padding-bottom: 0.75rem;
}
#main-header.scrolled nav a.logo-link { color: #2563eb; /* Template blue */ }
#main-header.scrolled nav .nav-link { color: #374151; /* gray-700 */ }
#main-header.scrolled nav .nav-link:hover { color: #2563eb; /* Template blue */ }
#main-header.scrolled nav .nav-button { color: #374151; /* gray-700 */ } /* Scrolled button color */
#main-header.scrolled nav .nav-button:hover { color: #2563eb; /* Template blue */ }
#main-header.scrolled nav .nav-button i { color: inherit; } /* Inherit button color */
#main-header.scrolled .hamburger div { background-color: #374151; /* gray-700 */ }

/* --- NEW: Logo Image Styling --- */
.logo-image {
  display: inline-block; /* Ensures it behaves well within flex */
  height: 2rem; /* Tailwind h-8. ADJUST THIS VALUE to fit your logo & header */
  width: auto; /* Maintain aspect ratio */
  vertical-align: middle; /* Helps align with text if needed */
}

/* Default state (Transparent Header): Show white logo, hide black logo */
.logo-black {
  display: none; /* Hide black logo initially */
}
.logo-white {
  display: inline-block; /* Ensure white logo is visible */
}

/* Scrolled state (White Header): Hide white logo, show black logo */
#main-header.scrolled .logo-link .logo-white {
  display: none; /* Hide white logo when scrolled */
}
#main-header.scrolled .logo-link .logo-black {
  display: inline-block; /* Show black logo when scrolled */
}
/* --- End Logo Image Styling --- */

/* --- Generic Dropdown Styling (Updated for JS Control) --- */
.dropdown-container {
  position: relative;
}

.dropdown-content {
  /* Base styles for hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;

  position: absolute;
  top: 100%;
  right: 0;
  /* margin-top: 0.125rem; REMOVED */

  background-color: white;
  min-width: 160px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
  z-index: 60;
  border-radius: 0.5rem; /* Container rounding */
  border: 1px solid #e5e7eb;
  pointer-events: none;
}

/* Class added by JavaScript to show the dropdown */
.dropdown-content.dropdown-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

/* --- Dropdown Link Styles --- */
.dropdown-content a {
  color: #374151;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  overflow: hidden; /* Helps clip background */
}
.dropdown-content a:hover {
  background-color: #eff6ff;
  color: #2563eb;
}

/* Apply rounding to first and last link */
.dropdown-content a:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.dropdown-content a:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Style for active language (Desktop & Mobile - applied via JS) */
.active-lang {
    /* Example: Use JS to apply styles like:
       background-color: #dbeafe; color: #1e3a8a; font-weight: 600;
    */
}

/* === NEW: Style for active/pre-selected "More" menu item === */
.dropdown-content a.active-more-item {
  background-color: #eff6ff; /* Example: blue-50 (subtler than lang) */
  color: #1e40af;          /* Example: blue-800 */
  font-weight: 600;         /* Example: semibold */
}
/* === END NEW === */

/* --- End Generic Dropdown Styling --- */

/* Keep original mobile menu logic, but apply general styling */
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: white; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); z-index: 40; }
.mobile-menu a, .mobile-menu .mobile-section-title { display: block; padding: 0.9rem 1.5rem; color: #374151; /* gray-700 */ text-decoration: none; border-bottom: 1px solid #e5e7eb; /* gray-200 */ font-weight: 500; }
.mobile-menu a:hover { background-color: #f9fafb; /* gray-50 */ color: #2563eb; }
/* Mobile section title styling (for "More") */
.mobile-menu .mobile-section-title {
    font-weight: 600; color: #1f2937; background-color: #f9fafb; padding-top: 0.75rem; padding-bottom: 0.75rem;
}
/* Sub-menu items in mobile (indented slightly) */
.mobile-menu .mobile-submenu-link {
     padding-left: 2.5rem; font-weight: normal; font-size: 0.9rem;
}
.mobile-menu .mobile-submenu-link:hover { background-color: #eff6ff; }
.mobile-menu .language-switcher-mobile { border-top: 1px solid #e5e7eb; /* gray-200 */ }
.mobile-menu .language-switcher-mobile a { padding: 0.6rem 1rem; border-bottom: none; display: inline-block; margin-right: 0.5rem; border-radius: 0.25rem; transition: background-color 0.2s ease, color 0.2s ease; }
.mobile-menu .language-switcher-mobile a:hover { background-color: #eff6ff; /* blue-50 */ color: #2563eb; }
/* Mobile active language style */
.mobile-menu .language-switcher-mobile a.active-lang { background-color: #bfdbfe; color: #1e40af; font-weight: 600; }
.mobile-menu a:last-child, .mobile-menu div:last-child a:last-child { border-bottom: none; }

/* Hamburger icon animation (Original) */
.hamburger div { width: 25px; height: 3px; margin: 5px 0; transition: 0.4s, background-color 0.3s ease-in-out; border-radius: 3px; }
.hamburger.open .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.open .bar2 { opacity: 0; }
.hamburger.open .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

/* Hero angled bottom (Original) */
.angled-divider { clip-path: polygon(0 100%, 100% 0, 100% 100%); }

/* --- Button Styles (From Template) --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; /* font-semibold */
    padding: 0.75rem 2rem; /* py-3 px-8 */
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06); /* shadow-lg */
    transition: all 0.3s ease; /* Smooth transition */
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Ensure links look like buttons */
    border: none; /* Ensure no default border */
}
.btn i { /* Font Awesome Icon spacing */
    margin-left: 0.5rem; /* ml-2 */
}
/* Play Button specific icon spacing */
 .btn-play i {
     margin-right: 0.5rem; /* Icon before text */
     margin-left: 0;
 }
.btn-primary {
    background-image: linear-gradient(to right, #3b82f6 , #6366f1); /* Gradient */
    color: white;
}
.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05); /* shadow-xl */
    transform: translateY(-2px) scale(1.03); /* Lift and scale */
    filter: brightness(1.1); /* Slightly brighter */
}
/* Modified secondary for Hero video button */
.btn-secondary-outline {
     background-color: transparent;
     color: white;
     border: 2px solid white; /* Original had border */
}
.btn-secondary-outline:hover {
     background-color: white;
     color: #3b82f6; /* blue-600 on hover */
     transform: translateY(-2px);
     box-shadow: 0 6px 12px -3px rgba(255,255,255,.2); /* Subtle glow */
}

/* Service Card / Feature Box Styling (Based on Template Service Card) */
.feature-card {
    background-color: white;
    padding: 2rem; /* p-8 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04); /* Softer shadow */
    text-align: center;
    border: 1px solid #e5e7eb; /* Subtle border */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px); /* Lift more */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    border-color: #93c5fd; /* blue-300 */
}
/* Feature Icon Wrapper (From Template) */
.feature-icon-wrapper {
    border-radius: 9999px; /* rounded-full */
    width: 4.5rem; /* w-18 */
    height: 4.5rem; /* h-18 */
    display: inline-flex; /* Changed to inline-flex */
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem; /* mb-5 */
    transition: transform 0.3s ease;
    background-image: linear-gradient(to bottom right, #dbeafe, #e0e7ff); /* Subtle gradient */
}
.feature-icon-wrapper i {
    font-size: 2rem; /* text-4xl */
    line-height: 1;
    color: #3b82f6; /* blue-600 */
}
.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1); /* Scale icon on hover */
}

/* About Section Styling */
#about .about-image { /* Target the specific image, not all images in #about */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Softer, larger shadow */
}
/* NEW: Styles for the video trigger in About section (using Tailwind classes mostly, but can add specifics here if needed) */
.about-video-trigger {
    /* Base styles handled by Tailwind */
}


/* --- Accordion Styles (Original Logic, Template Appearance) --- */
.accordion-item {
  background-color: white;
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04); /* Softer shadow */
  overflow: hidden; /* Important for max-height transition */
  border: 1px solid #e5e7eb; /* Subtle border */
  transition: box-shadow 0.3s ease;
}
 .accordion-item:hover {
     box-shadow: 0 6px 12px -3px rgba(0, 0, 0, 0.08);
 }
.accordion-button {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 1.25rem 1.5rem; /* py-5 px-6 (from original #services-accordion specific) */
  text-align: left; font-weight: 600; /* semibold */ color: #1f2937; /* text-gray-800 */
  background-color: white; border: none; cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-size: 1.125rem; /* text-lg (from original specific) */
}
.accordion-button:hover { background-color: #f9fafb; /* hover:bg-gray-50 */ }
.accordion-button:focus { outline: none; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); /* Example focus ring */ }
.accordion-icon { /* Targeting the <i> tag */
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0; margin-left: 1rem; /* ml-4 */
  color: #2563eb; /* text-blue-600 */
  font-size: 1.1em; /* Adjust size if needed */
}
.accordion-button[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-content {
  padding: 0 1.5rem; /* Horizontal padding matches button */
  color: #4b5563; /* text-gray-600 */ line-height: 1.625; /* leading-relaxed */
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
  background-color: white;
  font-size: 0.95rem; /* Slightly smaller content text */
}
.accordion-content.open {
  max-height: 650px; /* Increased max-height */
  padding-top: 0.75rem; padding-bottom: 1.5rem; /* Adjusted padding */
}
/* Styling for lists inside accordion (Original) */
.accordion-content ul { list-style: none; padding-left: 0.5rem; margin-top: 1rem; margin-bottom: 1rem; }
.accordion-content li { margin-bottom: 0.5rem; position: relative; padding-left: 1.25rem; }
.accordion-content li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #2563eb; /* Blue */
    font-size: 0.8em;
}
.accordion-content p + ul { margin-top: 1rem; }
.accordion-content p + p { margin-top: 0.75rem; } /* Space between paragraphs */
.accordion-content strong { color: #1f2937; font-weight: 600; }

/* Accordion Slide-in Animation */
.accordion-slide-left {
  opacity: 0;
  transform: translateX(-40px); /* Start off-screen left */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* transition-delay will be added by JS */
}
.accordion-slide-left.visible {
  opacity: 1;
  transform: translateX(0); /* Slide to original position */
}

/* Gallery Image Hover (Original Structure, Template Effects) */
.gallery-image-wrapper {
  position: relative; overflow: hidden;
  border-radius: 0.75rem; /* rounded-xl */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  aspect-ratio: 4 / 3; /* Keep aspect ratio */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-image-wrapper:hover {
     transform: translateY(-5px) scale(1.03);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.gallery-image-wrapper img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
/* .gallery-image-wrapper:hover img { transform: scale(1.05); } */
.gallery-image-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%); /* Gradient overlay */
  opacity: 0; transition: opacity 0.3s ease-in-out;
}
.gallery-image-wrapper:hover::after { opacity: 1; }


/* --- Lightbox Styles (Original Logic, Minor Styling Tweaks) --- */
.lightbox-hidden { display: none; }
.lightbox-visible {
  display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Darker overlay */
  justify-content: center; align-items: center; z-index: 1000;
  padding: 1rem; cursor: pointer;
  backdrop-filter: blur(5px); /* Add blur */
}
.lightbox-content-wrapper {
  position: relative; background-color: #1f2937; /* Dark background */
  padding: 0.25rem; /* Thinner padding */
  border-radius: 0.5rem; /* rounded-lg */
  max-width: 90%; max-height: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); /* Stronger shadow */
  cursor: default; display: flex; justify-content: center; align-items: center;
}
.lightbox-content-wrapper iframe, .lightbox-content-wrapper img {
  display: block;
  max-width: 100%; max-height: 85vh;
  border-radius: 0.375rem; /* rounded-md */
  border: none; /* Remove potential iframe border */
}
.lightbox-content-wrapper iframe { aspect-ratio: 16 / 9; width: 100%; max-width: 900px; /* Adjusted max width for video */ }

/* Contact Section Styling (Adapting Template Elements) */
#contact {
     background-color: #1f2937; /* Darker gray from template contact */
     color: #d1d5db; /* gray-300 from template */
     position: relative;
     overflow: hidden;
}
 #contact::before {
     content: ""; position: absolute; inset: 0; opacity: 0.05;
     background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
     z-index: 1;
 }
 #contact .container { position: relative; z-index: 2; }
 .contact-card {
    background-color: #374151; /* gray-700 */
    padding: 2rem; border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.2), 0 3px 7px -3px rgba(0, 0, 0, 0.2); /* Shadow */
    text-align: center; border: 1px solid #4b5563; /* gray-600 border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have same height */
    display: flex; /* Flexbox for vertical alignment */
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Push map link down */
 }
 .contact-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
 }
 .contact-card i.fa-solid { /* Icon styling - more specific selector */
     font-size: 2.5rem; margin-bottom: 1.25rem; color: #60a5fa; /* blue-400 */
     display: block; /* Was inline-block, block works better with flex */
     margin-left: auto;
     margin-right: auto;
 }
 .contact-card h3 {
     color: #f9fafb; /* gray-50 */ font-size: 1.5rem; /* text-2xl */
     font-weight: 600; margin-bottom: 0.75rem; /* mb-3 */
 }
 .contact-card p { color: #d1d5db; /* gray-300 */ line-height: 1.7; }
 .contact-card a {
     color: #93c5fd; /* blue-300 */ transition: color 0.3s ease;
     text-decoration: none; font-weight: 500;
 }
 .contact-card a:hover { color: #ffffff; }
 .contact-card .map-link { margin-top: 1.25rem; display: inline-block; font-weight: 500; }
 .contact-card .map-link i.fa-solid { /* Map link arrow - specific selector */
     font-size: 0.9em; margin-bottom: 0; margin-left: 0.3rem;
     vertical-align: middle; color: inherit; display: inline; /* Reset display for arrow */
 }
  /* Wrapper for card content other than link */
 .contact-card-content {
      flex-grow: 1; /* Allow content to take available space */
 }

 /* --- Expandable Department Table Styles --- */
  .department-table-container {
      background-color: #374151; /* gray-700 */
      border-radius: 0.75rem; /* rounded-xl */
      box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.2), 0 3px 7px -3px rgba(0, 0, 0, 0.2);
      border: 1px solid #4b5563; /* gray-600 */
      overflow: hidden; /* Ensures rounded corners apply */
      margin-top: 3rem; /* Space above the table container */
  }
  .contact-table-toggle {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 1rem 1.5rem; /* p-4 px-6 */
      background-color: transparent; /* Match container background */
      border: none; border-bottom: 1px solid #4b5563; /* gray-600 */
      cursor: pointer; transition: background-color 0.2s ease-in-out;
  }
  .contact-table-toggle:hover {
       background-color: rgba(255, 255, 255, 0.05);
  }
  .contact-table-toggle:focus {
       outline: none;
       box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.4); /* blue-400 focus ring */
  }
  .contact-table-toggle span {
      font-size: 1.125rem; /* text-lg */ font-weight: 600; /* semibold */
      color: #f9fafb; /* gray-50 */
  }
  .contact-table-toggle .toggle-arrow {
      transition: transform 0.3s ease-in-out;
      color: #9ca3af; /* gray-400 */
      flex-shrink: 0;
  }
  .contact-table-toggle[aria-expanded="true"] .toggle-arrow {
      transform: rotate(180deg);
  }
 .contact-table-content {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      padding-left: 1rem; padding-right: 1rem; /* Add horizontal padding for table */
      padding-top: 0; padding-bottom: 0;
 }
 .contact-table-content.expanded {
      max-height: 1000px; /* Adjust if needed */
      transition: max-height 0.5s ease-in, padding 0.5s ease-in;
      padding-top: 1rem; padding-bottom: 1rem; /* Add vertical padding when open */
 }
 /* Department Table Specific Styles */
 .department-table {
     min-width: 100%;
     border-collapse: collapse; /* Use collapse for simpler borders */
 }
 .department-table th, .department-table td {
     padding: 0.75rem 1rem; /* py-3 px-4 */
     text-align: left;
     border-bottom: 1px solid #4b5563; /* gray-600 */
     vertical-align: middle;
     font-size: 0.875rem; /* text-sm */
     color: #d1d5db; /* gray-300 */
 }
 .department-table thead th {
     background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter header */
     font-weight: 600; /* semibold */
     color: #e5e7eb; /* gray-200 */
     text-transform: uppercase;
     letter-spacing: 0.05em;
     font-size: 0.75rem; /* text-xs */
 }
 .department-table tbody tr:last-child td {
     border-bottom: none; /* Remove bottom border on last row */
 }
  .department-table tbody tr {
     transition: background-color 0.2s ease;
 }
 .department-table tbody tr:hover {
     background-color: rgba(255, 255, 255, 0.03); /* Very subtle hover */
 }
 .department-table td[data-translate^="dep"] { /* Department name */
     font-weight: 500;
     color: #e5e7eb; /* gray-200 */
 }
 .department-table a {
     color: #93c5fd; /* blue-300 - link color */
     transition: color 0.3s ease;
 }
 .department-table a:hover {
     color: #ffffff; /* White on hover */
     text-decoration: underline;
 }
 /* --- End Expandable Table Styles --- */

 /* Footer Styling (From Template) */
 footer {
    background-color: #111827; /* gray-900 */
    color: #6b7280; /* gray-500 */
    padding-top: 2.5rem; padding-bottom: 2.5rem; /* py-10 */
    text-align: center; font-size: 0.875rem; /* text-sm */
 }