/* CSS Variables for Themes */
:root {
  --header-bg: #ffffff;
  --divider-color: #c4c3c1;
  --border-color: #c4c3c1;
}

:root[data-theme="dark"] {
  --header-bg: #1a1a1a;
  --divider-color: #404040;
  --border-color: #404040;
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--header-bg);
  color: #292a25; /* Default font color */
  transition: background-color 0.3s ease, color 0.3s ease;
  border-right: 3px solid #222;
  border-left: 3px solid #222;
}

/* Font Declarations */
@font-face {
  font-family: 'Cera Pro';
  src: url('fonts/CERA PRO REGULAR.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Funnel Display';
  src: url('fonts/FunnelDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'MADE Outer Sans';
  src: url('fonts/MADE Outer Sans Bold PERSONAL USE.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'MADE Outer Sans Light';
  src: url('fonts/MADE Outer Sans Light PERSONAL USE.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/MARK SIMONSON - PROXIMA NOVA REGULAR.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Mona Sans';
  src: url('fonts/MonaSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('fonts/SourceSerif4-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* Menu Section */
.menu-section {
  width: 100%;
  border-bottom: 1px solid #a6a5a1; /* Default border style */
  background-color: #f9f8f4;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.menu-content-frame {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Adjust as needed */
}

.menu-left {
  display: flex;
  list-style: none;
  gap: 100px; /* Adjust as needed */
}

.menu-left a {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-size: 14.73px; /* Updated font size */
  line-height: 30.88px; /* 23.16pt converted to px */
  color: #292a25; /* Default font color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-left a:hover {
  color: #f92b26; /* Hover color */
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #a6a5a1;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #4e4e4e;
  padding: 0px 16px 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 4px;
}

.dropdown-item {
  display: block;
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-size: 14px;
  color: #292a25;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #f92b26;
}

/* Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-items {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #ffffff;
  border: 1px solid #a6a5a1;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.dropdown-submenu:hover .dropdown-submenu-items {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-subitem {
  display: block;
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-size: 12px;
  color: #292a25;
  text-decoration: none;
  padding: 6px 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.4;
}

.dropdown-subitem:hover {
  background-color: #f5f5f5;
  color: #f92b26;
}

/* Mobile submenu styles */
@media (max-width: 1024px) {
  /* Disable hover effects on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }
  
  .dropdown-submenu:hover .dropdown-submenu-items {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
  
  .dropdown-submenu-items {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    min-width: auto;
  }
  
  .dropdown-submenu-items.active {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    transform: none;
  }
  
  .dropdown-subitem {
    font-size: 14px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
  }
  
  .dropdown-subitem:last-child {
    border-bottom: none;
  }
}

/* Dark mode mobile submenu */
@media (max-width: 1024px) {
  [data-theme="dark"] .dropdown-submenu-items {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  [data-theme="dark"] .dropdown-subitem {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  
  .footer-heading::after {
    justify-self: anchor-center;
  }
}

/* Mobile font size adjustments for smaller screens */
@media (max-width: 768px) {
  .dropdown-subitem {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .footer-heading::after {
    justify-self: anchor-center;
  }
}

@media (max-width: 480px) {
  .dropdown-subitem {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .footer-heading::after {
    justify-self: anchor-center;
  }
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 20px; /* Gap between icons */
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.section-8 {
  display: none;
}

.bulb-icon {
  height: 28px;
  width: auto; /* Allow width to adjust based on height */
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(20%) sepia(85%) saturate(2000%) hue-rotate(350deg) brightness(90%) contrast(120%);
}

/* Mobile devices */
@media (max-width: 1024px) {
  .bulb-icon {
    height: 28px;
    width: auto;
  }
}

@media (max-width: 480px) {
  body {
    border-left: none;
    border-right: none;
  }
  
  .bulb-icon {
    height: 28px;
    width: auto;
  }
}

.theme-toggle:hover .bulb-icon {
  filter: brightness(0) saturate(100%) invert(28%) sepia(90%) saturate(4257%) hue-rotate(345deg) brightness(95%) contrast(101%);
}

.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon svg {
  width: 28.8px; /* 20% larger */
  height: 28.8px; /* 20% larger */
}
 .hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .hamburger-line {
    width: 100%;
    height: 1.6px; /* Make hamburger bars 2px */
    background-color: #a61a2e;
    transition: all 0.3s ease;
  }
  
  /* Hamburger menu red color when active */
  .hamburger-menu.active .hamburger-line {
    background-color: #f92b26; /* Red color when active */
  }

  /* Hamburger menu animation to X */
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile Navigation Overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 55vh;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-menu-mobile li {
    margin: 20px 0;
  }

  .nav-menu-mobile a {
    font-family: 'MADE Outer Sans Light', sans-serif;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-menu-mobile a:hover {
    color: #f92b26;
  }

  /* Body scroll lock */
  body.noscroll {
    overflow: hidden;
    height: 100vh;
 }

  /* Show hamburger menu on small screens */
  @media (max-width: 1024px) {
      .hamburger-menu {
        display: flex;
      }
      
      .menu-left {
        display: none; /* Hide desktop menu on mobile */
      }
      
      /* Position menu section at top right on mobile */
             .menu-section {
               position: relative;
               background-color: transparent;
               border-bottom: none;
             }
             
             /* Place menu section above header on mobile */
             body {
               display: flex;
               flex-direction: column;
             }
             
             @media (max-width: 1024px) {
               .menu-section {
                 order: -1;
               }
             }
      
      .menu-content-frame {
        justify-content: flex-end;
        padding: 20px;
      }
      
      .menu-right {
        /* Unify all elements color, hover etc in menu section on mobile */
        gap: 20px;
      }
      
      /* Hamburger menu red color when active */
      .hamburger-menu.active {
        color: #f92b26;
      }
      
      /* Hover and active colors for all menu elements */
      .theme-toggle:hover,
      .search-icon:hover,
      .hamburger-menu:hover {
        color: #f92b26;
      }
      
      .theme-toggle:active,
      .search-icon:active,
      .hamburger-menu:active {
        color: #f92b26;
      }
      
      /* Theme toggle size on mobile */
      .theme-toggle {
        /* Use same size as desktop */
        width: auto;
        height: auto;
      }
      
      .theme-toggle, .search-icon {
        /* Ensure icons are visible on mobile */
        color: #292a25;
      }
      
      [data-theme="dark"] .theme-toggle,
      [data-theme="dark"] .search-icon {
        color: #ffffff;
      }
    }

/* Responsive Design */
@media (max-width: 1024px) {
  .menu-content-frame {
    padding: 0 20px;
    height: 70px;
  }
  
  .menu-left {
    gap: 30px;
  }
  
  .menu-left a {
    font-size: 22px; /* Slightly smaller on tablet */
    line-height: 28px;
  }
  
  .menu-right {
    gap: 15px;
  }
  
  .search-icon svg {
    width: 24px; /* Slightly smaller on tablet */
    height: 24px; /* Slightly smaller on tablet */
  }
}

@media (max-width: 480px) {
  .menu-content-frame {
    padding: 0 16px;
    height: 60px;
  }
  
  .menu-left {
    gap: 20px;
  }
  
  .menu-left a {
    font-size: 18px; /* Smaller on mobile */
    line-height: 24px;
  }
  
  .menu-right {
    gap: 15px;
  }
  
  .bulb-icon,
  .search-icon svg {
    width: auto; /* 20% larger */
    height: 24px; /* 20% larger */
  }
}

/* Header Styles */
.header {
  width: 100%;
  height: 17em;
  background-color: var(--header-bg);
  border-top: 1px solid #a6a5a1; /* Default border style */
  border-bottom: 1px solid #a6a5a1; /* Default border style */
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.header-content-frame {
  max-width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.header-left {
  width: 70%;
  display: flex;
  align-items: center;
  padding-left: 18px;
  height: 100%;
}

.header-right {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0px;
  height: 100%;
  margin-right: -32px; /* 32px gap between divider and right logo */
}

.logo {
  width: auto;
  object-fit: contain;
}

.left-logo {
  max-height: 135px;
}

.right-logo {
  max-height: 70px;
}

.divider {
  position: absolute;
  left: 84%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--divider-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header {
    height: 96px;
  }
  
  .left-logo {
    max-height: 56px;
  }
  
  .right-logo {
    max-height: 40px;
  }
  
  .header-content-frame {
    padding: 0 0px;
  }
  
  .header-left {
    padding-left: 20px;
  }
  
  .header-right {
    padding-right: 0px;
    margin-right: -32px; /* 32px gap between divider and right logo */
  }
}

@media (max-width: 480px) {
  .header {
    height: 88px;
  }
  
  .left-logo {
    max-height: 48px;
  }
  
  .right-logo {
    max-height: 36px;
  }
  
  .header-content-frame {
    padding: 0 0px;
  }
  
  .header-left {
    padding-left: 12px;
  }
  
  .header-right {
    padding-right: 0px;
    margin-right: -20px; /* 20px gap between divider and right logo on mobile */
  }
  
  .divider {
    left: 70%;
  }
}
/* Dark theme */
[data-theme="dark"] .menu-left a {
  color: #ffffff; /* White text in dark mode */
}

[data-theme="dark"] .menu-section {
  border-bottom: 1px solid #404040; /* Darker border in dark mode */
}

/* Dark mode dropdown styles */
[data-theme="dark"] .dropdown-menu {
  background-color: #1a1a1a;
  border-color: #404040;
}

[data-theme="dark"] .dropdown-header {
  color: #b0b0b0;
  border-bottom-color: #404040;
}

[data-theme="dark"] .dropdown-item {
  color: #ffffff;
}

[data-theme="dark"] .dropdown-item:hover {
  background-color: #333333;
  color: #f92b26;
}

/* Dark mode submenu styles */
[data-theme="dark"] .dropdown-submenu-items {
  background-color: #1a1a1a;
  border-color: #404040;
}

[data-theme="dark"] .dropdown-subitem {
  color: #ffffff;
}

[data-theme="dark"] .dropdown-subitem:hover {
  background-color: #333333;
  color: #f92b26;
}

/* Comprehensive Dark Mode Styling */
[data-theme="dark"] {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme="dark"] .header {
  background-color: var(--header-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .section-3,
[data-theme="dark"] .section-4,
[data-theme="dark"] .section-6,
[data-theme="dark"] .section-7,
[data-theme="dark"] .section-8,
[data-theme="dark"] .section-9,
[data-theme="dark"] .section-10,
[data-theme="dark"] .section-11,
[data-theme="dark"] .section-12,
[data-theme="dark"] .section-13,
[data-theme="dark"] .section-14 {
  background-color: var(--bg-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .section-5 {
  background-color: var(--bg-secondary);
}

[data-theme="dark"] .section-3-heading,
[data-theme="dark"] .section-6-heading,
[data-theme="dark"] .section-9-heading,
[data-theme="dark"] .section-11-heading {
  color: var(--text-primary);
}

[data-theme="dark"] .section-3-subheading,
[data-theme="dark"] .section-6-subheading,
[data-theme="dark"] .section-9-subheading,
[data-theme="dark"] .section-11-subheading {
  color: var(--text-secondary);
}

[data-theme="dark"] .section-5-title {
  color: var(--text-primary);
}

[data-theme="dark"] .tile-label {
  color: var(--text-primary);
}

[data-theme="dark"] .section-7-heading,
[data-theme="dark"] .section-7-hover-heading {
  color: var(--text-primary);
}

[data-theme="dark"] .section-7-hover-para {
  color: var(--text-secondary);
}

[data-theme="dark"] .section-8-button-text {
  color: var(--text-primary);
}

[data-theme="dark"] .section-10-heading {
  color: var(--text-primary);
}

[data-theme="dark"] .section-12-heading {
  color: var(--text-primary);
}

[data-theme="dark"] .section-12-paragraph {
  color: var(--text-secondary);
}

[data-theme="dark"] .section-13-header {
  color: var(--text-primary);
}

[data-theme="dark"] .section-13-title {
  color: var(--text-primary);
}

[data-theme="dark"] .section-13-publisher,
[data-theme="dark"] .section-13-author,
[data-theme="dark"] .section-13-date {
  color: var(--text-secondary);
}

[data-theme="dark"] .section-14-header {
  color: var(--text-primary);
}

[data-theme="dark"] .section-14-title {
  color: var(--text-primary);
}

[data-theme="dark"] .section-14-publisher {
  color: #f92b26; /* Keep red accent */
}

[data-theme="dark"] .section-14-date {
  color: #6d37ff; /* Keep purple accent */
}

/* Dark mode for specific elements */
[data-theme="dark"] .row-title,
[data-theme="dark"] .col2-heading,
[data-theme="dark"] .col3-row-1-title,
[data-theme="dark"] .col3-row-3-title {
  color: var(--text-primary);
}

/* More specific selectors to override higher specificity */
[data-theme="dark"] .row-1 .row-title,
[data-theme="dark"] .row-3 .row-title {
  color: var(--text-primary);
}

/* Specific elements to be white in dark mode */
[data-theme="dark"] .col2-row-1-info,
[data-theme="dark"] .col2-row-1-title,
[data-theme="dark"] .col3-row-1-date,
[data-theme="dark"] .col3-quote,
[data-theme="dark"] .col2-row-1-date,
[data-theme="dark"] .col3-author,
[data-theme="dark"] .col2-title,
[data-theme="dark"] .col2-date,
[data-theme="dark"] .col2-publisher {
  color: var(--text-primary);
}

/* Additional elements to be white in dark mode */
[data-theme="dark"] .col2-name,
[data-theme="dark"] .col2-designation,
[data-theme="dark"] .publisher,
[data-theme="dark"] .col2-row-1-publisher,
[data-theme="dark"] .col3-name,
[data-theme="dark"] .col3-date,
[data-theme="dark"] .col3-publisher {
  color: var(--text-primary);
}

[data-theme="dark"] .ratio-text,
[data-theme="dark"] .combination-text,
[data-theme="dark"] .col3-text,
[data-theme="dark"] .col2-paragraph,
[data-theme="dark"] .col2-meta {
  color: var(--text-secondary);
}

[data-theme="dark"] .ratio-number,
[data-theme="dark"] .combination-number,
[data-theme="dark"] .col3-number {
  color: var(--text-primary);
}

[data-theme="dark"] .date,
[data-theme="dark"] .publisher {
  color: var(--text-primary)!important;
}

/* Dark mode borders */
[data-theme="dark"] .section-4,
[data-theme="dark"] .section-5,
[data-theme="dark"] .section-7,
[data-theme="dark"] .section-8,
[data-theme="dark"] .section-12,
[data-theme="dark"] .section-13,
[data-theme="dark"] .section-14 {
  border-color: var(--border-color);
}

[data-theme="dark"] .column-1,
[data-theme="dark"] .column-2,
[data-theme="dark"] .column-3,
[data-theme="dark"] .section-5-tile,
[data-theme="dark"] .section-7-column,
[data-theme="dark"] .section-13-column,
[data-theme="dark"] .section-14-row {
  border-color: var(--border-color);
}

/* Dark mode buttons and interactive elements */
[data-theme="dark"] .section-8-button {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .section-8-button:hover {
  background-color: #f92b26;
  border-color: #f92b26;
}

[data-theme="dark"] .section-11-button {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .section-11-button:hover {
  background-color: #f92b26;
  border-color: #f92b26;
}

[data-theme="dark"] .section-12-button {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .section-12-button:hover {
  background-color: #f92b26;
  border-color: #f92b26;
}

[data-theme="dark"] .section-13-button {
  background-color: #6d37ff;
  border-color: #6d37ff;
}

[data-theme="dark"] .section-13-button:hover {
  background-color: #f92b26;
  border-color: #f92b26;
}

/* Dark mode hover effects */
[data-theme="dark"] .section-5-tile:hover {
  background-color: #f92b26;
}

[data-theme="dark"] .section-7-column:hover {
  background-color: #292925;
}

[data-theme="dark"] .section-10-column:hover {
  background-color: #6d37ff;
}

/* Dark mode arrows */
[data-theme="dark"] .section-8-arrow-left,
[data-theme="dark"] .section-8-arrow-right,
[data-theme="dark"] .section-13-arrow-left,
[data-theme="dark"] .section-13-arrow-right {
  color: #f92b26;
}

[data-theme="dark"] .section-8-arrow-left:hover,
[data-theme="dark"] .section-8-arrow-right:hover,
[data-theme="dark"] .section-13-arrow-left:hover,
[data-theme="dark"] .section-13-arrow-right:hover {
  color: #6d37ff;
}

/* Fix remaining light backgrounds */
[data-theme="dark"] .menu-section {
  background-color: var(--bg-primary);
}

[data-theme="dark"] .col3-row-1 {
  background-color: var(--bg-primary);
}

[data-theme="dark"] .row-2,
[data-theme="dark"] .row-3 {
  background-color: var(--bg-primary);
}

[data-theme="dark"] .section-5-tile {
  background-color: var(--bg-secondary);
}

[data-theme="dark"] .section-13-bottom-right {
  background-color: var(--bg-secondary);
}

/* Comprehensive Dark Mode Border Styling */
[data-theme="dark"] body {
  border-color: #404040;
}

[data-theme="dark"] .header {
  border-color: #404040;
}

[data-theme="dark"] .section-4,
[data-theme="dark"] .section-5,
[data-theme="dark"] .section-7,
[data-theme="dark"] .section-8,
[data-theme="dark"] .section-12,
[data-theme="dark"] .section-13,
[data-theme="dark"] .section-14 {
  border-color: #404040;
}

[data-theme="dark"] .column-1,
[data-theme="dark"] .column-2,
[data-theme="dark"] .column-3 {
  border-color: #404040;
}

[data-theme="dark"] .row-1,
[data-theme="dark"] .row-2,
[data-theme="dark"] .row-3,
[data-theme="dark"] .row-4 {
  border-color: #404040;
}

[data-theme="dark"] .col2-row-1,
[data-theme="dark"] .col2-row-2,
[data-theme="dark"] .col2-row-3,
[data-theme="dark"] .col2-row-4 {
  border-color: #404040;
}

[data-theme="dark"] .col3-row-1,
[data-theme="dark"] .col3-row-2,
[data-theme="dark"] .col3-row-3 {
  border-color: #404040;
}

[data-theme="dark"] .section-5-tile {
  border-color: #404040;
}

[data-theme="dark"] .section-5-grid {
  border-color: #404040;
}

[data-theme="dark"] .section-7-column {
  border-color: #404040;
}

[data-theme="dark"] .section-10-column-1,
[data-theme="dark"] .section-10-column-2 {
  border-color: #404040;
}

[data-theme="dark"] .section-10-heading-row {
  border-color: #404040;
}

[data-theme="dark"] .section-10-column-1 .section-10-heading-row {
  border-color: #404040;
}

[data-theme="dark"] .section-13-news-grid {
  border-color: #404040;
}

[data-theme="dark"] .section-13-column {
  border-color: #404040;
}

[data-theme="dark"] .section-13-bottom-row {
  border-color: #404040;
}

[data-theme="dark"] .section-13-bottom-left,
[data-theme="dark"] .section-13-bottom-center,
[data-theme="dark"] .section-13-bottom-right {
  border-color: #404040;
}

[data-theme="dark"] .section-14-row {
  border-color: #404040;
}

[data-theme="dark"] .section-14-column {
  border-color: #404040;
}

[data-theme="dark"] .section-14-row:last-child {
  border-bottom-color: #404040;
}

/* Dark mode pseudo-element borders */
[data-theme="dark"] .section-13-bottom-right::before {
  background-color: #404040;
}

/* Section 3 */
.section-3 {
  background-color: #ffffff; /* White background */
  padding: 100px 0 80px 0; /* Top: 100px, Bottom: 80px */
}

.section-3-content {
  max-width: 90%; /* Match the width of other sections */
  margin: 0 auto;
  text-align: center; /* Center the content */
}

.section-3-heading {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 90px; /* More reasonable size while maintaining impact */
  line-height: 96px; /* Proportional line height */
  color: #292a25; /* Default text color */
  margin: 0 0 30px 0; /* Add some margin below the heading */
  text-align: center; /* Center align */
}

.section-3-subheading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: normal; /* Regular */
  font-size: 28px; /* More reasonable size */
  line-height: 34px; /* Proportional line height */
  color: #292a25; /* Default text color */
  margin: 0; /* Remove default margin */
  text-align: center; /* Center align */
}

/* Responsive Design for Section 3 */
@media (max-width: 1024px) {
  .section-3 {
    padding: 80px 0 64px 0; /* Maintain proportion: top 80px, bottom 64px */
  }
  
  .section-3-heading {
    font-size: 64px; /* Smaller on tablet */
    line-height: 77px;
  }
  
  .section-3-subheading {
    font-size: 22px; /* Smaller on tablet */
    line-height: 27px;
  }
}

@media (max-width: 768px) {
  body {
    border-left: none;
    border-right: none;
  }
  
  .section-3 {
    padding: 60px 0 48px 0; /* Maintain proportion: top 60px, bottom 48px */
  }
  
  .section-3-heading {
    font-size: 48px; /* Smaller on smaller tablets */
    line-height: 58px;
  }
  
  .section-3-subheading {
    font-size: 18px; /* Smaller on smaller tablets */
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .section-3 {
    padding: 40px 0 32px 0; /* Maintain proportion: top 40px, bottom 32px */
  }
  
  .section-3-heading {
    font-size: 36px; /* Much smaller on mobile */
    line-height: 43px;
  }
  
  .section-3-subheading {
    font-size: 16px; /* Much smaller on mobile */
    line-height: 19px;
  }
}

/* Section 4 */
.section-4 {
  border-top: 1px solid #a6a5a1; /* Top border 100% width */
  background-color: #ffffff;
  padding-bottom: 50px;
}

.section-4-content {
  max-width: 100%;
  margin: 0 40px 0 40px;
  padding: 0 0px; /* Left and right 20px padding */
}

.section-4-columns {
  display: flex;
  gap: 0; /* No gap between columns */
}

/* Column Layout - Left/Right same width, Center 25% more width */
.column-1, .column-3 {
  flex: 1; /* Equal width for left and right columns */
}

.column-2 {
  flex: 1.25; /* 25% more width for center column */
}

/* Column 1 Styling */

/* Row 1 Styling */
.row-1 {
  padding: 30px;
  border-left: 1px solid #a6a5a1;
  border-right: 1px solid #a6a5a1;
  padding-bottom: 10px;
}

.row-1 .row-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.row-1 .row-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 26px; /* 36 pt converted to px */
  line-height: 32px; /* 43.2 pt converted to px */
  color: #292a25;
  margin-bottom: 15px;
  max-width: 20ch;
}

.row-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.date, .publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 18px; /* 24 pt converted to px */
  color: #292a25;
}

/* Row 2 Styling */
.row-2 {
  text-align: center;
  border: 1px solid #a6a5a1; /* All borders */
  background-color: #f8f7f3; /* Background color */
  padding: 30px 20px;
}

.ratio-number {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #6d37ff;
  margin-bottom: 10px;
}

.ratio-text {
  font-family: 'Mona Sans', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #292a25;
  margin: 0;
}

.ratio-text strong {
  font-weight: bold;
}

/* Row 3 Styling */
.row-3 {
  border-left: 1px solid #a6a5a1;
  border-right: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  background-color: #f8f7f3; /* Background color */
  padding: 20px;
}

.row-3 .row-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.row-3 .publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 18px; /* 24 pt converted to px */
  line-height: 38.4px; /* 28.8 pt converted to px */
  color: #292a25;
  display: block;
  margin-bottom: 30px;
}

.row-3 .row-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 26px; /* 36 pt converted to px */
  line-height: 32px; /* 43.2 pt converted to px */
  color: #292a25;
  margin-bottom: 15px;
  max-width: 20ch;
}

/* Row 4 Styling */
.row-4 {
  text-align: center;
  padding: 30px 20px;
  /* No borders as specified */
}

.combination-number {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #6d37ff;
  margin-bottom: 10px;
}

.combination-text {
  font-family: 'Mona Sans', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #292a25;
  margin: 0;
}

/* Column 2 Styling */
.column-2 {
  border-left: none;
}

/* Column 2 Row 1 Styling */
.col2-row-1 {
  border-bottom: 1px solid #a6a5a1;
  padding: 30px;
  padding-bottom: 10px;
}

.col2-row-1-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.col2-row-1-info {
  margin-bottom: 15px;
}

.col2-name {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
  margin-bottom: 5px;
}

.col2-designation {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
}

.col2-row-1-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 26px; /* Same as Column 1 row titles */
  line-height: 32px;
  color: #292a25;
  margin: 40px 0 40px 0;
}

.col2-row-1-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.col2-row-1-date, .col2-row-1-publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as Column 1 */
  font-size: 18px;
  color: #292a25;
}

/* Column 2 Row 2 Styling */
.col2-row-2 {
  text-align: center;
  padding: 30px;
}

.col2-heading {
  font-family: 'Mona Sans', sans-serif;
    font-weight: bold;
    font-size: 31px;
    line-height: 34.41px;
    color: #f92b26;
    margin: 20px 5px 30px 5px; 
}

.col2-paragraph {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
  margin: 0;
  max-width: 60ch;
  margin: 0 auto;
  text-align: justify;
}

/* Column 2 Row 3 Styling */
.col2-row-3 {
  padding: 20px;
}

.col2-row-3-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.col2-left {
  flex: 0 0 auto;
}

.col2-right {
  flex: 1;
  height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.col2-image {
  width: 100%;
  height: 15.2em;
  max-width: 240px;
}

.col2-subject {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 16px;
  color: #6d37ff;
  margin: 0 0 10px 0;
  text-align: left;
}

.col2-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 22px;
  line-height: 30px;
  color: #292a25;
  margin: 0 0 15px 0;
  text-align: left;
  max-width: 14ch;
}

.col2-meta {
  text-align: right;
}

.col2-date, .col2-publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  margin-top: 0px;
  color: #292a25;
  display: block;
}

.col2-date {
  margin-bottom: 5px;
}

/* Column 2 Row 4 Styling */
.col2-row-4 {
  padding: 20px;
}

.col2-row-4-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.col2-row-4 .col2-left {
  flex: 1;
}

.col2-row-4 .col2-right {
  flex: 0 0 auto;
}

/* Column 3 Styling */

/* Column 3 Row 1 Styling */
.col3-row-1 {
  border-right: 1px solid #a6a5a1;
  border-left: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  padding: 30px;
  background-color: #f8f7f3;
  padding-bottom: 10px;
}

.col3-row-1-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.col3-row-1-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 26px; /* Same as other titles */
  line-height: 32px;
  color: #292a25;
  margin: 0 0 15px 0;
  max-width: 20ch;
}

.col3-row-1-date {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
  text-align: left;
}

/* Column 3 Row 2 Styling */
.col3-row-2 {
  border-right: 1px solid #a6a5a1;
  border-left: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  padding: 30px;
  padding-bottom: 10px;
}

.col3-quote {
  font-family: 'Source Serif 4', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
  line-height: 32px;
  color: #292a25;
  margin: 0 0 15px 0;
  font-style: italic;
  quotes: """ """ "'" "'";
  text-align: center;
}

.col3-quote:before {
  content: open-quote;
}

.col3-quote:after {
  content: close-quote;
}

.col3-author {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
  text-align: center;
}

/* Column 3 Row 3 Styling */
.col3-row-3 {
  border-right: 1px solid #a6a5a1;
  border-left: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  padding: 30px;
  padding-bottom: 10px;
}

.col3-row-3-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.col3-name {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
  text-align: left;
  margin-bottom: 10px;
}

.col3-row-3-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 26px;
  line-height: 32px;
  color: #292a25;
  margin: 0 0 15px 0;
  text-align: left;
  max-width: 20ch;
}

.col3-row-3-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.col3-date, .col3-publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight - same as publisher */
  font-size: 18px;
  color: #292a25;
}

/* Column 3 Row 4 Styling */
.col3-row-4 {
  text-align: center;
  padding: 30px 20px;
  /* No borders as specified */
}

.col3-number {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #6d37ff;
  margin-bottom: 10px;
}

.col3-text {
  font-family: 'Mona Sans', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #292a25;
  margin: 0;
}

/* Responsive Design for Section 4 */
@media (max-width: 1024px) {
  .section-4-columns {
    flex-direction: column; /* Stack columns on tablet */
  }
  
  .column-1, .column-2, .column-3 {
    flex: 1;
  }
  
  .column-1 {
    border-right: none;
  }
  
  .column-2 {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #a6a5a1;
  }
  
  .column-3 {
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  
  .ratio-number, .combination-number {
    font-size: 60px;
  }
  
  .row-1 .row-title, .row-3 .row-title {
    font-size: 32px; /* Responsive size for tablet */
    line-height: 38.4px;
  }
  
  .date, .publisher {
    font-size: 24px; /* Responsive size for tablet */
    line-height: 28.8px;
  }
  
  .col2-heading {
    font-size: 18px; /* Responsive size for tablet */
    line-height: 48px;
  }
  
  .col2-title {
    font-size: 22px; /* Responsive size for tablet */
    line-height: 28px;
    max-width: none;
  }
  
  .col2-meta {
    text-align: left;
  }
  
  .col2-row-1 {
    border-bottom: none;
  }
  
  .col2-row-4 {
    margin-bottom: 20px;
  }
  
  .col2-right {
    margin-bottom: 3em;
  }
  
  .col2-paragraph, .col2-subject, .col2-date, .col2-publisher {
    font-size: 16px; /* Responsive size for tablet */
  }
  
  .col2-name, .col2-designation, .col2-row-1-date, .col2-row-1-publisher {
    font-size: 16px; /* Responsive size for tablet */
  }
  
  .col3-row-1-title, .col3-quote, .col3-row-3-title {
    font-size: 22px; /* Responsive size for tablet */
    line-height: 28px;
  }
  
  .col3-row-1-title, .col3-row-3-title {
    max-width: none;
  }
  
  .col3-row-1-date, .col3-author, .col3-name, .col3-date, .col3-publisher {
    font-size: 16px; /* Responsive size for tablet */
  }
  
  .col3-number {
    font-size: 60px; /* Responsive size for tablet */
  }
}

@media (max-width: 768px) {
  .section-4-content {
    padding: 0 0px;
  }
  
  .row-1, .row-2, .row-3, .row-4 {
    padding: 15px;
  }
  
  .ratio-number, .combination-number {
    font-size: 60px;
  }
  
  .ratio-text, .combination-text {
    font-size: 14px;
  }
  
  .row-1 .row-title, .row-3 .row-title {
    font-size: 28px; /* Responsive size for smaller tablet */
    line-height: 33.6px;
  }
  
  .date, .publisher {
    font-size: 20px; /* Responsive size for smaller tablet */
    line-height: 24px;
  }
  
  .col2-heading {
    font-size: 18px; /* Responsive size for smaller tablet */
    line-height: 39px;
  }
  
  .col2-title {
    font-size: 20px; /* Responsive size for smaller tablet */
    line-height: 26px;
    max-width: none;
  }
  
  .col2-meta {
    text-align: left;
  }
  
  .col2-row-1 {
    border-bottom: none;
  }
  
  .col2-row-4 {
    margin-bottom: 20px;
  }
  
  .col2-right {
    margin-bottom: 3em;
  }
  
  .col2-paragraph, .col2-subject, .col2-date, .col2-publisher {
    font-size: 15px; /* Responsive size for smaller tablet */
  }
  
  .col2-name, .col2-designation, .col2-row-1-date, .col2-row-1-publisher {
    font-size: 15px; /* Responsive size for smaller tablet */
  }
  
  .col3-row-1-title, .col3-quote, .col3-row-3-title {
    font-size: 20px; /* Responsive size for smaller tablet */
    line-height: 26px;
  }
  
  .col3-row-1-title, .col3-row-3-title {
    max-width: none;
  }
  
  .col3-row-1-date, .col3-author, .col3-name, .col3-date, .col3-publisher {
    font-size: 15px; /* Responsive size for smaller tablet */
  }
  
  .col3-number {
    font-size: 60px; /* Responsive size for smaller tablet */
  }
  
  .col2-row-3-content, .col2-row-4-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .col2-image {
    max-width: 100%;
    height: 18rem;
  }
  
  .col2-meta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-4-content {
    padding: 0 0px;
  }
  
  .row-1, .row-2, .row-3, .row-4 {
    padding: 10px;
  }
  
  .ratio-number, .combination-number {
    font-size: 60px;
  }
  
  .row-1 .row-title, .row-3 .row-title {
    font-size: 24px; /* Responsive size for mobile */
    line-height: 28.8px;
  }
  
  .ratio-text, .combination-text {
    font-size: 13px;
  }
  
  .date, .publisher {
    font-size: 16px; /* Responsive size for mobile */
    line-height: 19.2px;
  }
  
  .col2-heading {
    font-size: 18px; /* Responsive size for mobile */
    line-height: 32px;
  }
  
  .col2-title {
    font-size: 18px; /* Responsive size for mobile */
    line-height: 24px;
    max-width: none;
  }
  
  .col2-meta {
    text-align: left;
  }
  
  .col2-row-1 {
    border-bottom: none;
  }
  
  .col2-row-4 {
    margin-bottom: 20px;
  }
  
  .col2-right {
    margin-bottom: 3em;
  }
  
  .col2-paragraph, .col2-subject, .col2-date, .col2-publisher {
    font-size: 14px; /* Responsive size for mobile */
  }
  
  .col2-name, .col2-designation, .col2-row-1-date, .col2-row-1-publisher {
    font-size: 14px; /* Responsive size for mobile */
  }
  
  .col3-row-1-title, .col3-quote, .col3-row-3-title {
    font-size: 18px; /* Responsive size for mobile */
    line-height: 24px;
  }
  
  .col3-row-1-title, .col3-row-3-title {
    max-width: none;
  }
  
  .col3-row-1-date, .col3-author, .col3-name, .col3-date, .col3-publisher {
    font-size: 14px; /* Responsive size for mobile */
  }
  
  .col3-number {
    font-size: 60px; /* Responsive size for mobile */
  }
}

/* Section 5 */
.section-5 {
  background-color: #f9f8f4;
  border-top: 1px solid #a6a5a1;
}

.section-5-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.section-5-title {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 55px; /* 83.68 pt converted to px (83.68 × 1.333) */
  line-height: 108.45px; /* 81.36 pt converted to px (81.36 × 1.333) */
  color: #292a25;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  border-radius: 0;
  overflow: hidden;
}

.section-5-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f8f4;
  border-right: 1px solid #a6a5a1;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  min-height: 200px;
}

.section-5-tile:last-child {
  border-right: none;
}

.section-5-tile:hover {
  background-color: #f92b26;
  color: #ffffff;
}

.tile-label {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 23px;
  line-height: normal;
  color: #292a25;
  transition: color 0.3s ease;
  display: block;
  max-width: 10ch;
  text-align: center;
}

.section-5-tile:hover .tile-label {
  color: #ffffff;
}

/* Responsive Design for Section 5 */
@media (max-width: 1024px) {
  .section-5 {
    padding: 0;
  }
  
  .section-5-title {
    font-size: 89px; /* Responsive size for tablet */
    line-height: 87px;
    margin-bottom: 40px;
  }
  
  .section-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section-5-tile:nth-child(4),
  .section-5-tile:nth-child(5) {
    border-top: 1px solid #a6a5a1;
  }
  
  .tile-label {
    font-size: 38px; /* Responsive size for tablet */
    line-height: 46px;
  }
}

@media (max-width: 768px) {
  .section-5 {
    padding: 0;
  }
  
  .section-5-title {
    font-size: 70px; /* Responsive size for smaller tablet */
    line-height: 68px;
    margin-bottom: 30px;
  }
  
  .section-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-5-tile:nth-child(3),
  .section-5-tile:nth-child(4),
  .section-5-tile:nth-child(5) {
    border-top: 1px solid #a6a5a1;
  }
  
  .section-5-tile:nth-child(even) {
    border-right: none;
  }
  
  .tile-label {
    font-size: 32px; /* Responsive size for smaller tablet */
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .section-5 {
    padding: 0;
  }
  
  .section-5-title {
    font-size: 50px; /* Responsive size for mobile */
    line-height: 48px;
    margin-bottom: 20px;
  }
  
  .section-5-grid {
    grid-template-columns: 1fr;
  }
  
  .section-5-tile {
    border-right: none;
    border-bottom: 1px solid #a6a5a1;
    min-height: 120px;
    padding: 20px 15px;
  }
  
  .section-5-tile:last-child {
    border-bottom: none;
  }
  
  .tile-label {
    font-size: 24px; /* Responsive size for mobile */
    line-height: 29px;
  }
}

/* Section 6 */
.section-6 {
  background-color: #ffffff; /* White background */
  padding: 150px 0 150px 0; /* More padding top and bottom than Section 3 */
}

.section-6-content {
  max-width: 90%; /* Match the width of other sections */
  margin: 0 auto;
  text-align: center; /* Center the content */
}

.section-6-heading {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 85px; /* Same size as Section 3 heading */
  line-height: normal; /* Proportional line height */
  color: #6d37ff; /* Purple color like the numbers in previous sections */
  margin: 0 0 110px 0; /* More gap between heading and subheading */
  text-align: center; /* Center align */
}

.section-6-subheading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: lighter; /* Regular */
  font-size: 32px; /* Same size as Section 3 subheading */
  line-height: 34px; /* Proportional line height */
  color: #292a25; /* Default text color */
  margin: 0 auto; /* Center the element itself */
  text-align: center; /* Center align */
  max-width: 80%;
}

/* Responsive Design for Section 6 */
@media (max-width: 1024px) {
  .section-6 {
    padding: 120px 0 100px 0; /* Adjust padding for tablets */
  }
  
  .section-6-heading {
    font-size: 72px; /* Slightly smaller on tablet */
    line-height: 77px;
    margin-bottom: 50px;
  }
  
  .section-6-subheading {
    font-size: 24px; /* Slightly smaller on tablet */
    line-height: 29px;
  }
}

@media (max-width: 768px) {
  .section-6 {
    padding: 100px 0 80px 0; /* Adjust padding for smaller tablets */
  }
  
  .section-6-heading {
    font-size: 56px; /* Smaller on smaller tablets */
    line-height: 60px;
    margin-bottom: 40px;
  }
  
  .section-6-subheading {
    font-size: 20px; /* Smaller on smaller tablets */
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .section-6 {
    padding: 80px 0 60px 0; /* Adjust padding for mobile */
  }
  
  .section-6-heading {
    font-size: 40px; /* Much smaller on mobile */
    line-height: 44px;
    margin-bottom: 30px;
  }
  
  .section-6-subheading {
    font-size: 16px; /* Much smaller on mobile */
    line-height: 20px;
  }
}

/* Section 7 */
.section-7 {
  background-color: #ffffff;
  border-top: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  padding: 0 0;
}

.section-7-content {
  max-width: 100%;
  margin: 0 40px 0 40px; /* 5% left and right padding - same as Section 4 */
  padding: 0 0px;
  border-right: 1px solid #a6a5a1;
  border-left: 1px solid #a6a5a1;
}

.section-7-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.section-7-column {
  position: relative;
  border-right: 1px solid #a6a5a1;
  overflow: hidden;
  transition: background-color 0.3s ease;
  height: auto; /* Fixed height for all columns */
  display: flex;
  flex-direction: column;
}

.section-7-column:last-child {
  border-right: none;
}

.section-7-image {
  width: 100%;
  object-fit: cover;
}

.section-7-heading {
  font-family: 'Source Serif 4', serif;
  font-weight: 500; /* Medium */
  font-style: italic;
  font-size: 22px; /* 32 pt converted to px (32 × 1.333) */
  line-height: normal; /* 38.4 pt converted to px (38.4 × 1.333) */
  color: #292a25;
  margin: 50px 0 80px 0; /* 50px top, 80px bottom margin for extra spacing */
  padding: 0 20px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-7-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #292a25;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.section-7-column:hover .section-7-hover-content {
  opacity: 1;
}

.section-7-hover-heading {
  font-family: 'Source Serif 4', serif;
  font-weight: 500; /* Medium */
  font-style: italic;
  font-size: 26px; /* Same as regular heading */
  line-height: normal;
  color: #ffffff;
  text-align: left;
  margin: 0 0 50px 0;
}

.section-7-hover-para {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
  text-align: left;
  margin: 0;
}

/* Responsive Design for Section 7 */
@media (max-width: 1024px) {
  .section-7 {
    padding: 60px 0;
  }
  
  .section-7-content {
    margin: 0 30px 0 30px;
  }
  
  .section-7-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-7-column:nth-child(2),
  .section-7-column:nth-child(4) {
    border-right: none;
  }
  
  .section-7-column:nth-child(3),
  .section-7-column:nth-child(4) {
    border-top: 1px solid #a6a5a1;
  }
  
  .section-7-heading {
    font-size: 34px; /* Responsive size for tablet */
    line-height: 41px;
    margin: 40px 0 60px 0; /* Extra bottom spacing for tablet */
  }
  
  .section-7-hover-para {
    font-size: 26px; /* Responsive size for tablet */
    line-height: 31px;
  }
}

@media (max-width: 768px) {
  .section-7 {
    padding: 40px 0;
  }
  
  .section-7-content {
    margin: 0 20px 0 20px;
  }
  
  .section-7-columns {
    grid-template-columns: 1fr;
  }
  
  .section-7-column {
    border-right: none;
    border-bottom: 1px solid #a6a5a1;
    height: 400px; /* Fixed height for mobile */
  }
  
  .section-7-column:last-child {
    border-bottom: none;
  }
  
  .section-7-heading {
    font-size: 28px; /* Responsive size for smaller tablet */
    line-height: 34px;
    margin: 30px 0 50px 0; /* Extra bottom spacing for smaller tablet */
  }
  
  .section-7-hover-para {
    font-size: 22px; /* Responsive size for smaller tablet */
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .section-7 {
    padding: 30px 0;
  }
  
  .section-7-content {
    margin: 0 15px 0 15px;
  }
  
  .section-7-column {
    height: 350px; /* Fixed height for mobile */
  }
  
  .section-7-heading {
    font-size: 24px; /* Responsive size for mobile */
    line-height: 29px;
    margin: 25px 0 40px 0; /* Extra bottom spacing for mobile */
    padding: 0 15px;
  }
  
  .section-7-hover-para {
    font-size: 14px; /* Responsive size for mobile */
    line-height: 22px;
  }
}

/* Section 8 */
.section-8 {
  background-color: #ffffff;
  padding: 45px 0;
  border-bottom: 1px solid #a6a5a1;
}

.section-8-content {
  max-width: 100%;
  margin: 0 auto;
}

.section-8-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 93%; /* Increased width for more spacing */
  margin: 0 auto;
  gap: 40px; /* Add gap between elements */
}

.section-8-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999894;
  transition: color 0.3s ease;
  border-radius: 50%;
}

.section-8-arrow:hover {
  color: #f92b26; /* Red color on hover */
}

.arrow-symbol {
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  transform: scaleX(1.3); /* Increase width by 50% while keeping height same */
  display: inline-block;
}

.section-8-button {
  background: none;
  border: 2px solid #6d37ff;
  border-radius: 30px; /* 25% border radius */
  padding: 10px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.section-8-button-text {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: 300; /* Light */
  font-size: 20px; /* 27.72 pt converted to px (27.72 × 1.333) */
  line-height: normal; /* 33.27 pt converted to px (33.27 × 1.333) */
  color: #6d37ff; /* Purple color */
  transition: color 0.3s ease;
}

.section-8-button:hover {
  background-color: #f92b26; /* Red background on hover */
  border: 2px solid #f92b26;
}

.section-8-button:hover .section-8-button-text {
  color: #ffffff; /* White text on hover */
}

/* Responsive Design for Section 8 */
@media (max-width: 1024px) {
  .section-8 {
    padding: 60px 0;
  }
  
  .section-8-row {
    max-width: 600px;
    gap: 30px;
  }
  
  .section-8-button {
    padding: 12px 24px;
  }
  
  .arrow-symbol {
    font-size: 20px;
    transform: scaleX(1.3); /* Maintain width scaling on tablet */
  }
  
  .section-8-button-text {
    font-size: 30px; /* Responsive size for tablet */
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .section-8 {
    padding: 40px 0;
  }
  
  .section-8-row {
    max-width: 100%;
    gap: 25px;
    padding: 0 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .section-8-arrow {
    padding: 10px;
    flex-shrink: 0;
  }
  
  .arrow-symbol {
    font-size: 18px;
    transform: scaleX(1.3); /* Maintain width scaling on smaller tablet */
  }
  
  .section-8-button {
    padding: 8px 16px;
    flex-shrink: 0;
    order: 2;
  }
  
  .section-8-button-text {
    font-size: 16px; /* Smaller size for tablet */
    line-height: 20px;
  }
  
  .section-8-arrow-left {
    order: 1;
  }
  
  .section-8-arrow-right {
    order: 3;
  }
}

@media (max-width: 480px) {
  .section-8 {
    padding: 30px 0;
  }
  
  .section-8-row {
    max-width: 100%;
    gap: 15px;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .section-8-arrow {
    padding: 6px;
    flex-shrink: 0;
  }
  
  .arrow-symbol {
    font-size: 14px;
    transform: scaleX(1.5); /* Maintain width scaling on mobile */
  }
  
  .section-8-button {
    padding: 6px 12px;
    flex-shrink: 0;
    order: 2;
  }
  
  .section-8-button-text {
    font-size: 12px; /* Smaller size for mobile */
    line-height: 18px;
  }
  
  .section-8-arrow-left {
    order: 1;
  }
  
  .section-8-arrow-right {
    order: 3;
  }
}

/* Section 9 */
.section-9 {
  background-color: #ffffff; /* White background */
  padding: 84px 0 80px 0; /* Top: 100px, Bottom: 80px - same as Section 3 */
}

.section-9-content {
  max-width: 90%; /* Match the width of other sections */
  margin: 0 auto;
  text-align: center; /* Center the content */
}

.section-9-heading {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800; /* ExtraBold - same as Section 3 */
  font-size: 90px; /* Same size as Section 3 heading */
  line-height: 96px; /* Proportional line height */
  color: #292a25; /* Default text color */
  margin: 0 0 30px 0; /* Add some margin below the heading */
  text-align: center; /* Center align */
}

.section-9-subheading {
  font-family: 'Source Serif 4', serif;
  font-weight: 300; /* Light */
  font-style: italic;
  font-size: 36px; /* 49.89 pt converted to px (49.89 × 1.333) */
  line-height: 79.81px; /* 59.87 pt converted to px (59.87 × 1.333) */
  color: #292a25; /* Default text color */
  margin: 0; /* Remove default margin */
  text-align: center; /* Center align */
}

/* Responsive Design for Section 9 */
@media (max-width: 1024px) {
  .section-9 {
    padding: 80px 0 64px 0; /* Maintain proportion: top 80px, bottom 64px */
  }
  
  .section-9-heading {
    font-size: 64px; /* Smaller on tablet */
    line-height: 77px;
  }
  
  .section-9-subheading {
    font-size: 48px; /* Smaller on tablet */
    line-height: 58px;
  }
}

@media (max-width: 768px) {
  .section-9 {
    padding: 60px 0 48px 0; /* Maintain proportion: top 60px, bottom 48px */
  }
  
  .section-9-heading {
    font-size: 48px; /* Smaller on smaller tablets */
    line-height: 58px;
  }
  
  .section-9-subheading {
    font-size: 36px; /* Smaller on smaller tablets */
    line-height: 43px;
  }
}

@media (max-width: 480px) {
  .section-9 {
    padding: 40px 0 32px 0; /* Maintain proportion: top 40px, bottom 32px */
  }
  
  .section-9-heading {
    font-size: 36px; /* Much smaller on mobile */
    line-height: 43px;
  }
  
    .section-9-subheading {
    font-size: 28px; /* Much smaller on mobile */
    line-height: 34px;
  }
}

/* Section 10 */
.section-10 {
  background-color: #ffffff;
  width: 100%;
  padding: 0;
}

.section-10-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.section-10-columns {
  display: flex;
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.section-10-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background-color 0.3s ease;
}

.section-10-heading-row {
  height: 30%; /* 27% height as specified */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
  position: relative;
}

.section-10-column-1 .section-10-heading-row {
  border-right: 1.5px solid #ffffff; /* White border between columns */
}

.section-10-heading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: bold;
  font-size: 36px; /* 30 pt converted to px (30 × 1.333) */
  line-height: normal;
  color: #ffffff;
  text-align: left;
  margin: 0;
}

.section-10-heading .arrow-symbol {
  font-size: 40px; /* Same size as heading */
  font-weight: bold;
  line-height: 1;
  transform: scaleX(1.5);
  display: inline-block;
  margin-left: 10px;
}

.section-10-image-row {
  height: 73%; /* Remaining height for image */
  overflow: hidden;
}

.section-10-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effects */
.section-10-column-1 {
  background-color: #292a25; /* Normal background color */
}

.section-10-column-1:hover {
  background-color: #6d37ff;
}

.section-10-column-1:hover .section-10-heading {
  color: #ffffff;
}

.section-10-column-2 {
  background-color: #292a25; /* Normal background color */
}

.section-10-column-2:hover {
  background-color: #6d37ff;
}

.section-10-column-2:hover .section-10-heading {
  color: #ffffff;
}

/* Responsive Design for Section 10 */
@media (max-width: 1024px) {
  .section-10-columns {
    flex-direction: column;
    height: auto;
  }
  
  .section-10-column {
    height: 50vh;
  }
  
  .section-10-heading-row {
    height: 30%;
    padding: 0 30px;
  }
  
  .section-10-image-row {
    height: 70%;
    margin-bottom: -4px;
  }
  
  .section-10-heading {
    font-size: 32px; /* Responsive size for tablet */
    line-height: normal;
    padding: 25px;
  }
  
  .section-10-heading .arrow-symbol {
    font-size: 32px;
  }
  
  .section-10-column-1 .section-10-heading-row {
    border-right: none;
    border-bottom: 1.5px solid #ffffff;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .section-10-heading-row {
    padding: 0 20px;
  }
  
  .section-10-column-1 .section-10-heading-row {
    padding: 0 20px;
  }
  
  .section-10-heading {
    font-size: 28px; /* Responsive size for smaller tablet */
    line-height: normal;
    padding: 25px;
  }
  
  .section-10-heading .arrow-symbol {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-10-heading-row {
    padding: 0 15px;
  }
  
  .section-10-column-1 .section-10-heading-row {
    padding: 0 15px;
  }
  
  .section-10-heading {
    font-size: 22px; /* Responsive size for mobile */
    line-height: normal;
    padding: 25px;
  }
  
  .section-10-heading .arrow-symbol {
    font-size: 22px;
  }
}

/* Section 11 */
.section-11 {
  background-color: #ffffff; /* White background */
  padding: 150px 0 150px 0; /* More padding top and bottom than Section 3 */
}

.section-11-content {
  max-width: 90%; /* Match the width of other sections */
  margin: 0 auto;
  text-align: center; /* Center the content */
}

.section-11-heading {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 800; /* ExtraBold */
  font-size: 65px; /* Same size as Section 6 heading */
  line-height: normal; /* Proportional line height */
  color: #6d37ff; /* Purple color like the numbers in previous sections */
  margin: 0 auto 110px auto; /* Center horizontally and add bottom margin */
  text-align: center; /* Center align */
  max-width: 26ch;
}

.section-11-subheading {
  font-family: 'Mona Sans', sans-serif;
  font-weight: lighter; /* Regular */
  font-size: 31px; /* Same size as Section 6 subheading */
  line-height: 34px; /* Proportional line height */
  color: #292a25; /* Default text color */
  margin: 0 auto 60px auto; /* Center the element itself and add bottom margin for button */
  text-align: center; /* Center align */
  max-width: 88%;
}

.section-11-button {
  background: none;
  border: 2px solid #f92b26;
  border-radius: 30px;
  padding: 10px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.section-11-button:hover {
  border: 2px solid #6d37ff;
}

.section-11-button-text {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: 300; /* Light */
  font-size: 20px;
  line-height: normal;
  color: #f92b26; /* Purple color - opposite of Section 8 */
  transition: color 0.3s ease;
}

.section-11-button:hover {
  background-color: #6d37ff; /* Purple background on hover - opposite of Section 8 */
}

.section-11-button:hover .section-11-button-text {
  color: #ffffff; /* White text on hover - opposite of Section 8 */
}

/* Responsive Design for Section 11 */
@media (max-width: 1024px) {
  .section-11 {
    padding: 120px 0 100px 0; /* Adjust padding for tablets */
  }
  
  .section-11-heading {
    font-size: 32px; /* Slightly smaller on tablet */
    line-height: 38px;
    margin-bottom: 50px;
  }
  
  .section-11-subheading {
    font-size: 24px; /* Slightly smaller on tablet */
    line-height: 29px;
    margin-bottom: 40px;
  }
  
  .section-11-button {
    padding: 8px 40px;
  }
  
  .section-11-button-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-11 {
    padding: 100px 0 80px 0; /* Adjust padding for smaller tablets */
  }
  
  .section-11-heading {
    font-size: 32px; /* Smaller on smaller tablets */
    line-height: 38px;
    margin-bottom: 40px;
  }
  
  .section-11-subheading {
    font-size: 20px; /* Smaller on smaller tablets */
    line-height: 24px;
    margin-bottom: 30px;
  }
  
  .section-11-button {
    padding: 6px 30px;
  }
  
  .section-11-button-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-11 {
    padding: 80px 0 60px 0; /* Adjust padding for mobile */
  }
  
  .section-11-heading {
    font-size: 32px; /* Much smaller on mobile */
    line-height: 38px;
    margin-bottom: 30px;
  }
  
  .section-11-subheading {
    font-size: 16px; /* Much smaller on mobile */
    line-height: 20px;
    margin-bottom: 25px;
  }
  
  .section-11-button {
    padding: 5px 25px;
  }
  
  .section-11-button-text {
    font-size: 12px;
  }
}

/* Section 12 */
.section-12 {
  background-color: #ffffff;
  padding: 65px 0; /* Top/bottom 50px margin */
  border-top: 1px solid #a6a5a1;
  border-bottom: 1px solid #a6a5a1;
  width: 100%;
}

.section-12-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 65px; /* Equal left/right space */
}

.section-12-columns {
  display: flex;
  gap: 90px; /* Gap between columns */
  align-items: center;
}

.section-12-column {
  flex: 1; /* Equal width for both columns */
}

.section-12-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-12-heading {
  font-family: 'Mona Sans', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 44px;
    color: #292a25;
    margin: 0 0 45px 0;
    text-align: left;
    margin-top: -20px;
    max-width: 20ch;
}

.section-12-paragraph {
  font-family: 'Mona Sans', sans-serif;
  font-weight: lighter;
  font-size: 19px;
  line-height: 26px;
  color: #292a25;
  margin: 0 0 55px 0;
  text-align: left;
  max-width: 46ch;
}

.section-12-button {
  background: none;
  border: 2px solid #6d37ff;
  border-radius: 30px;
  padding: 10px 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background-color: #6d37ff;
}

.section-12-button:hover {
  border: 2px solid #f92b26;
  background-color: #f92b26; /* Red background on hover */
}

.section-12-button-text {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: 300; /* Light */
  font-size: 18px;
  line-height: normal;
  color: #ffffff;
  transition: color 0.3s ease;
}

.section-12-button:hover .section-12-button-text {
  color: #ffffff; /* White text on hover */
}

/* Responsive Design for Section 12 */
@media (max-width: 1024px) {
  .section-12 {
    padding: 40px 0;
  }
  
  .section-12-content {
    padding: 0 30px;
  }
  
  .section-12-columns {
    gap: 30px;
  }
  
  .section-12-heading {
    font-size: 40px;
    margin-bottom: 25px;
  }
  
  .section-12-paragraph {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  
  .section-12-button {
    padding: 8px 40px;
  }
  
  .section-12-button-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-12-columns {
    flex-direction: column;
    gap: 30px;
  }
  
  .section-12-content {
    padding: 0 20px;
  }
  
  .section-12-heading {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .section-12-paragraph {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  
  .section-12-button {
    padding: 6px 30px;
  }
  
  .section-12-button-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .section-12 {
    padding: 30px 0;
  }
  
  .section-12-content {
    padding: 0 15px;
  }
  
  .section-12-columns {
    gap: 25px;
  }
  
  .section-12-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .section-12-paragraph {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  
  .section-12-button {
    padding: 5px 25px;
  }
  
  .section-12-button-text {
    font-size: 14px;
  }
}

/* Section 13 */
.section-13 {
  background-color: #ffffff;
  width: 100%;
}

.section-13-content {
  max-width: 100%;
  margin: 0 auto;
}

.section-13-header {
  font-family: 'Mona Sans', sans-serif;
  font-weight: bold;
  font-size: 45px;
  color: #292a25;
  text-align: center;
  padding: 30px 0; /* Top/bottom padding 30px */
  margin: 0;
}

.section-13-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #a6a5a1;
}

.section-13-column {
  padding: 16px 35px;
  border-right: 1px solid #a6a5a1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-bottom: 1px solid #a6a5a1;
}

.section-13-column:last-child {
  border-right: none;
}

.section-13-column-1 {
  background-color: #6d37ff; /* Purple background */
  gap: 40px; /* Specific gap for column 1 */
}

.section-13-column-1 .section-13-title {
  font-size: 32px; /* Specific font size for column 1 */
  line-height: 40px; /* Specific line height for column 1 */
  max-width: 10ch; /* Specific max width for column 1 */
}

.section-13-column-2 .section-13-title {
  font-size: 26px; /* Specific font size for column 2 */
  max-width: 18ch; /* Specific max width for column 2 */
}

.section-13-column-3 {
  background-color: #f92b26; /* Red background */
  border-bottom: 1px solid #a6a5a1;
}

.section-13-column-1 {
  border-bottom: 1px solid #a6a5a1;
}

.section-13-column-2 {
  border-bottom: 1px solid #a6a5a1;
}

.section-13-publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: bold; /* ExtraLight */
  font-size: 17px;
  color: #292a25;
  letter-spacing: 0.5px;
}

.section-13-column-1 .section-13-publisher,
.section-13-column-3 .section-13-publisher {
  color: #ffffff; /* White text on colored backgrounds */
}

.section-13-title {
  font-family: 'Source Serif 4', serif;
  font-weight: bold;
  font-style: italic;
  font-size: 23px;
  line-height: 30px;
  color: #292a25;
  flex-grow: 1;
}

.section-13-column-1 .section-13-title,
.section-13-column-3 .section-13-title {
  color: #ffffff; /* White text on colored backgrounds */
}

.section-13-author {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 16px;
  color: #292a25;
  line-height: 20px;
  max-width: 20ch;
}

.section-13-column-1 .section-13-author,
.section-13-column-3 .section-13-author {
  color: #ffffff; /* White text on colored backgrounds */
}

.section-13-author b {
  font-weight: bold;
}

.section-13-date {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200; /* ExtraLight */
  font-size: 16px;
  color: #292a25;
}

.section-13-column-1 .section-13-date,
.section-13-column-3 .section-13-date {
  color: #ffffff; /* White text on colored backgrounds */
}

/* Bottom Row */
.section-13-bottom-row {
  display: grid;
  grid-template-columns: 3fr 1fr; /* 75% merged, 25% button (matches column 4 width) */
  height: 80px;
  border-bottom: 1px solid #a6a5a1;
}

.section-13-bottom-left {
  /* Empty merged area below columns 1 & 2 - intentionally left empty */
  min-height: 80px;
}

.section-13-bottom-center {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #a6a5a1;
  border-left: 1px solid #a6a5a1;

}

.section-13-button {
  background: none;
  border: 2px solid #6d37ff;
  border-radius: 30px;
  padding: 8px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #6d37ff;
}

.section-13-button:hover {
  border: 2px solid #f92b26;
  background-color: #f92b26; /* Red background on hover */
}

.section-13-button-text {
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: 300; /* Light */
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  transition: color 0.3s ease;
}

.section-13-bottom-right {
  display: none; /* Hide the right section */
}

.section-13-bottom-right::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: .5px;
  background-color: #a6a5a1;
  transform: translateX(-50%);
}

.section-13-arrow-left,
.section-13-arrow-right {
  font-size: 24px;
  font-weight: bold;
  color: #f92b26;
  cursor: pointer;
  transition: color 0.3s ease;
}

.section-13-arrow-left:hover,
.section-13-arrow-right:hover {
  color: #6d37ff;
}

/* Responsive Design for Section 13 */
@media (max-width: 1024px) {
  .section-13-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-13-column:nth-child(2),
  .section-13-column:nth-child(4) {
    border-right: none;
  }
  
  .section-13-column:nth-child(3),
  .section-13-column:nth-child(4) {
    border-top: 1px solid #a6a5a1;
  }
  
  .section-13-bottom-row {
    grid-template-columns: 1fr 1fr; /* Updated to 2 columns */
  }
  
  .section-13-title {
    font-size: 26px;
    line-height: 40px;
  }
  
  .section-13-column-1 .section-13-title {
    font-size: 40px;
    line-height: 52px;
  }
  
  .section-13-column-2 .section-13-title {
    font-size: 26px;
    max-width: 23ch;
    line-height: 36px;
  }
  
  .section-13-bottom-left {
    min-height: 0;
  }
  
  .section-13-bottom-row {
    padding: 2px 0;
  }
  
  .section-13-bottom-center {
    border-left: none;
  }
}

@media (max-width: 768px) {
  .section-13-news-grid {
    grid-template-columns: 1fr;
  }
  
  .section-13-column {
    border-right: none;
    border-bottom: 1px solid #a6a5a1;
  }
  
  .section-13-column:last-child {
    border-bottom: none;
  }
  
  .section-13-bottom-row {
    grid-template-columns: 1fr; /* Single column for mobile */
    height: auto;
    padding: 20px 0;
  }
  
  .section-13-bottom-center {
    border-right: none;
    border-bottom: 1px solid #a6a5a1;
    padding: 15px 0;
  }
  
  .section-13-title {
    font-size: 26px;
    line-height: 40px;
  }
  
  .section-13-column-1 .section-13-title {
    font-size: 40px;
    line-height: 52px;
    max-width: 12ch;
  }
  
  .section-13-column-2 .section-13-title {
    font-size: 26px;
    max-width: 23ch;
    line-height: 36px;
  }
  
  .section-13-bottom-left {
    min-height: 0;
  }
  
  .section-13-bottom-row {
    padding: 2px 0;
  }
  
  .section-13-bottom-center {
    border-left: none;
  }
  
  .section-13-button {
    padding: 6px 25px;
  }
  
  .section-13-button-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-13-header {
    font-size: 32px;
    padding: 20px 0;
  }
  
  .section-13-column {
    padding: 20px 15px;
  }
  
  .section-13-title {
    font-size: 26px;
    line-height: 40px;
  }
  
  .section-13-column-1 .section-13-title {
    font-size: 40px;
    line-height: 52px;
  }
  
  .section-13-column-2 .section-13-title {
    font-size: 26px;
    max-width: 23ch;
    line-height: 36px;
  }
  
  .section-13-bottom-left {
    min-height: 0;
  }
  
  .section-13-bottom-row {
    padding: 2px 0;
  }
  
  .section-13-bottom-center {
    border-left: none;
  }
  
  .section-13-publisher,
  .section-13-author,
  .section-13-date {
    font-size: 14px;
  }
  
  .section-13-button {
    padding: 5px 20px;
  }
  
  .section-13-button-text {
    font-size: 13px;
  }
  
    .section-13-arrow-left,
  .section-13-arrow-right {
    font-size: 20px;
  }
}

/* Hyperlink Styles */
.section-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-link:hover {
  color: #6d37ff;
  text-decoration: none;
}

/* Remove underlines from button links */
.section-11-button,
.section-12-button,
.section-13-button {
  text-decoration: none;
}

.section-11-button:hover,
.section-12-button:hover,
.section-13-button:hover {
  text-decoration: none;
}

/* Dark mode hyperlink styles */
[data-theme="dark"] .section-link:hover {
  color: #6d37ff;
}

/* Dark mode logo switching */
[data-theme="dark"] #left-logo {
  content: url('images/left-logo_dark.png');
}

[data-theme="dark"] #right-logo {
  content: url('images/right-logo_dark.png');
}

/* Dark mode icon colors */
[data-theme="dark"] .theme-toggle {
  color: #ffffff;
}

[data-theme="dark"] .theme-toggle .bulb-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

[data-theme="dark"] .search-icon {
  color: #ffffff;
}

[data-theme="dark"] .search-icon svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Dark mode hamburger lines */
[data-theme="dark"] .hamburger-line {
  background-color: #ffffff;
}

/* Dark mode footer logo */
[data-theme="dark"] #footer-logo {
  content: url('images/left-logo_dark.png');
}

/* Dark mode social media icons */
[data-theme="dark"] .social-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Special hover color for news section titles */
.section-13-column-1 .section-link:hover {
  color: #292a25; /* Off-white color */
}

/* ===========================================
   FOOTER STYLES
   =========================================== */

/* Footer CSS Variables */
:root {
  --footer-bg: #ffffff;
  --footer-text: #333333;
  --footer-heading-color: #333333;
  --footer-link-color: #333333;
  --footer-link-hover: #6d37ff;
  --footer-border: #ebebeb;
  --footer-underline: #6d37ff;
  --footer-social-color: #6d37ff;
}

/* Dark mode footer variables */
:root[data-theme="dark"] {
  --footer-bg: #0a0a0a;
  --footer-text: #ffffff;
  --footer-heading-color: #ffffff;
  --footer-link-color: #e0e0e0;
  --footer-link-hover: #6d37ff;
  --footer-border: #404040;
  --footer-underline: #6d37ff;
  --footer-social-color: #6d37ff;
}

/* Footer Main Container */
footer {
  margin-top: 60px;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: 'MADE Outer Sans Light', sans-serif;
  font-weight: 300;
}

/* Footer Content */
.footer-content {
  display: flex;
  gap: 150px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer Logo */
.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Footer Headings */
.footer-heading {
  font-size: 20px;
  font-weight: 300;
  color: var(--footer-heading-color);
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 28%;
  height: 2px;
  background-color: var(--footer-underline);
}

/* Footer Address */
.footer-address {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--footer-text);
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 16px;
  font-weight: 300;
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--footer-link-hover);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.contact-label {
  font-size: 16px;
  font-weight: 300;
  color: var(--footer-text);
}

.contact-link {
  font-size: 16px;
  font-weight: 300;
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--footer-link-hover);
}

/* Footer Social Media */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--footer-text);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-left,
.footer-bottom-right {
  font-weight: 300;
}

/* ===========================================
   FOOTER MOBILE RESPONSIVE STYLES
   =========================================== */

/* Tablet and Mobile Footer */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column !important;
    gap: 40px !important;
    padding: 30px 20px !important;
    text-align: center !important;
  }
  
  .footer-column {
    align-items: center !important;
  }
  
  .footer-nav {
    align-items: center !important;
  }
  
  .footer-contact {
    align-items: center !important;
  }
  
  .footer-social {
    justify-content: center !important;
  }
  
  .social-icon {
    width: 28px !important;
    height: 28px !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    padding: 20px !important;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 25px 15px !important;
  }
  
  .footer-heading {
    font-size: 18px !important;
  }
  
  .footer-address,
  .footer-link,
  .contact-label,
  .contact-link {
    font-size: 14px !important;
  }
  
  .social-icon {
    width: 28px !important;
    height: 28px !important;
  }
  
  .footer-bottom {
    font-size: 12px !important;
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 20px 10px !important;
  }
  
  .footer-logo {
    max-width: 150px !important;
  }
  
  .footer-heading {
    font-size: 16px !important;
  }
  
  .footer-address,
  .footer-link,
  .contact-label,
  .contact-link {
    font-size: 13px !important;
  }
  
  .social-icon {
    width: 28px !important;
    height: 28px !important;
  }
  
  .footer-bottom {
    font-size: 11px !important;
    padding: 12px !important;
  }
}

.section-13-column-3 .section-link:hover {
  color: #292a25!important; /* Off-white color */
}

[data-theme="dark"] .section-13-column-1 .section-link:hover {
  color: #292a25; /* Off-white color for dark mode too */
}

/* Special hover color for specific sections */
.section-13-column-3 .section-link:hover,
.section-10-column-1 .section-link:hover,
.section-10-column-2 .section-link:hover {
  color: #f5f5f5; /* Off-white color */
}

[data-theme="dark"] .section-13-column-3 .section-link:hover,
[data-theme="dark"] .section-10-column-1 .section-link:hover,
[data-theme="dark"] .section-10-column-2 .section-link:hover {
  color: #f5f5f5; /* Off-white color for dark mode too */
}

/* Search Highlighting Only */
.search-highlight {
  background-color: #ffeb3b;
  color: #000;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: bold;
}

.search-highlight.current {
  background-color: #f92b26;
  color: #ffffff;
}

/* Dark mode search styles */
[data-theme="dark"] .search-highlight {
  background-color: #ffeb3b;
  color: #000;
}

[data-theme="dark"] .search-highlight.current {
  background-color: #f92b26;
  color: #ffffff;
}

/* Section 14 - Events */
.section-14 {
  width: 100%;
  background-color: #ffffff;
}

.section-14-header {
  font-family: 'Mona Sans', sans-serif;
  font-weight: bold;
  font-size: 45px;
  color: #292a25;
  text-align: center;
  padding: 30px 0;
  margin: 0;
}

.section-14-row {
  display: flex;
  width: 100%;
  border-top: 1px solid #a6a5a1;
}

.section-14-row:last-child {
  border-bottom: 1px solid #a6a5a1;
}

.section-14-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-bottom: -18px;
}

.section-14-image {
  width: 100%;
  height: 291px;
  object-fit: cover;
  display: block;
}

.section-14-column:last-child {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.section-14-publisher {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #f92b26;
  text-align: left;
  margin: 0;
}

.section-14-title {
  font-family: 'Source Serif 4', serif;
  font-weight: normal;
  font-style: italic;
  font-size: 35px;
  line-height: 47px;
  color: #292a25;
  text-align: left;
  margin: 0;
  flex-grow: 1;
  max-width: 25ch;
}

.section-14-date {
  font-family: 'Mona Sans', sans-serif;
  font-weight: 200;
  font-size: 21px;
  color: #6d37ff;
  text-align: right;
  margin: 0;
  padding: 10px 0;
}

.section-14-row:last-child .section-14-date {
  border-top: none;
}

/* Responsive Design for Section 14 */
@media (max-width: 1024px) {
  .section-14-header {
    font-size: 42px;
    padding: 25px 0;
  }
  
  .section-14-image {
    height: 300px;
  }
  
  .section-14-column {
    margin-bottom: 0;
  }
  
  .section-14-column:last-child {
    padding: 25px 30px;
    gap: 12px;
  }
  
  .section-14-title {
    font-size: 24px;
    line-height: 35px;
    max-width: none;
  }
  
  .section-14-publisher {
    font-size: 18px;
  }
  
  .section-14-date {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .section-14-header {
    font-size: 38px;
    padding: 20px 0;
  }
  
  .section-14-row {
    flex-direction: column;
  }
  
  .section-14-column {
    width: 100%;
    margin-bottom: 0;
  }
  
  .section-14-image {
    height: 250px;
  }
  
  .section-14-column:last-child {
    padding: 20px 25px;
    gap: 10px;
  }
  
  .section-14-title {
    font-size: 24px;
    line-height: 30px;
    max-width: none;
  }
  
  .section-14-publisher {
    font-size: 18px;
  }
  
  .section-14-date {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .section-14-header {
    font-size: 34px;
    padding: 15px 0;
  }
  
  .section-14-row {
    flex-direction: column;
  }
  
  .section-14-column {
    width: 100%;
    margin-bottom: 0;
  }
  
  .section-14-image {
    height: 220px;
  }
  
  .section-14-column:last-child {
    padding: 15px 20px;
    gap: 8px;
  }
  
  .section-14-title {
    font-size: 24px;
    line-height: 26px;
    max-width: none;
  }
  
  .section-14-publisher {
    font-size: 16px;
  }
  
  .section-14-date {
    font-size: 16px;
    padding: 10px 0;
}
}