/* Font Face Declarations */
@font-face {
    font-family: 'SourceSerif4-SemiBold';
    src: url('./fonts/SourceSerif4-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'SourceSerif4-Light';
    src: url('./fonts/SourceSerif4-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

@font-face {
    font-family: 'MonaSans-SemiBold';
    src: url('./fonts/MonaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'MonaSans-Light';
    src: url('./fonts/MonaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

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

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

@font-face {
    font-family: 'MonaSans-ExtraLightItalic';
    src: url('./fonts/MonaSans-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* CSS Custom Properties for Theme Switching */
:root {
    /* Light Theme Colors */
    --primary-blue: #0A48A0;
    --primary-red: #FA4141;
    --default-text: #292A25;
    --secondary-blue: #0392F9;
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #e9ecef;
    --icon-filter: none;
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --primary-blue: #4A7BC8;
    --primary-red: #FF6B6B;
    --default-text: #f8f9fa;
    --secondary-blue: #4BB5FF;
    --background: #1a1a1a;
    --surface: #2d2d2d;
    --border: #404040;
    --icon-filter: brightness(0) invert(1);
}

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

body {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    color: var(--default-text);
    background-color: var(--background);
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 3px solid #212121;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    padding: 30px 150px 0px 50px;
    background-color: var(--background);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side - Logos */
.header-left {
    display: flex;
    align-items: center;
    gap: 75px;
}

.left-logo {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.main-logo {
    height: 110px;
    width: auto;
    transition: filter 0.3s ease;
}

/* Right Side - Controls */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 50px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle and Search Buttons */
.theme-toggle,
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.theme-toggle:hover,
.search-toggle:hover {
    background-color: var(--surface);
}

.theme-icon,
.search-icon {
    height: 24px;
    filter: var(--icon-filter);
    transition: filter 0.3s ease;
    opacity: 0.8;
}

/* Make both icons look identical by normalizing their visual weight */
.theme-icon {
    filter: var(--icon-filter) contrast(0.9) brightness(1.1);
}

.search-icon {
    filter: var(--icon-filter) contrast(1.1) brightness(0.9);
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    right: 50px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 15px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.search-bar.active {
    display: flex;
}

#search-input {
    border: none;
    background: transparent;
    color: var(--default-text);
    font-size: 16px;
    width: 250px;
    outline: none;
}

#search-input::placeholder {
    color: var(--default-text);
    opacity: 0.7;
}

.search-close {
    background: none;
    border: none;
    color: var(--default-text);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger-menu {
    background-color: var(--secondary-blue);
    padding: 25px 20px 25px 20px;
    border-radius: 15px 15px 0px 0px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-menu:hover {
    background-color: var(--primary-blue);
}

.hamburger-menu:hover .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

.hamburger-line {
    width: 35px;
    height: 4.8px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    /* Navigation Menu Responsive - Tablet */
    .nav-menu {
        width: calc(100vw - 60px);
        max-width: 400px;
        right: 30px;
        left: auto;
    }
    
    .header-container {
        align-items: center;
    }
    
    .header-right {
        gap: 20px;
        align-items: center;
    }
    
    .left-logo {
        height: 30px;
    }
    
    .main-logo {
        height: 45px;
    }
    
    .header-controls {
        gap: 10px;
    }
    
    .theme-icon,
    .search-icon {
        width: auto;
        height: 20px;
    }
    
    .hamburger-menu {
        padding: 15px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    .search-bar {
        right: 20px;
    }
    
    #search-input {
        width: 200px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .left-logo {
        height: 25px;
    }
    
    .main-logo {
        height: 35px;
    }
    
    .header-controls {
        gap: 8px;
    }
    
    .theme-icon,
    .search-icon {
        width: auto;
        height: 18px;
    }
    
    .hamburger-menu {
        padding: 12px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    #search-input {
        width: 150px;
        font-size: 12px;
    }
    
    /* Navigation Menu Responsive */
    .nav-menu {
        width: calc(100vw - 40px);
        max-width: 350px;
        right: 20px;
        left: auto;
        margin: 0;
    }
    
    .nav-menu-content {
        padding: 25px 0;
        gap: 20px;
    }
    
    .nav-menu-primary,
    .nav-menu-secondary {
        padding: 0 30px;
    }
    
    .nav-menu-item {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .nav-menu-secondary .nav-menu-item {
        font-size: 14px;
    }
    
    .nav-menu-item-text {
        font-size: 14px;
    }
    
    /* Add expand/collapse indicator for mobile */
    .nav-menu-dropdown::after {
        content: '+';
        float: right;
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .nav-menu-dropdown.active::after {
        content: '−';
        transform: rotate(0deg);
    }
    
    .nav-menu-submenu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.1) !important;
        margin-top: 5px !important;
        border-radius: 5px !important;
        min-width: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 10px 0 !important;
    }
    
    .nav-menu-dropdown.active .nav-menu-submenu {
        display: block !important;
    }
    
    .nav-menu-submenu-level3 {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.15) !important;
        margin-top: 3px !important;
        border-radius: 3px !important;
        min-width: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 8px 0 !important;
    }
    
    .nav-menu-subitem-level2.active .nav-menu-submenu-level3 {
        display: block !important;
    }
    
    .nav-menu-subitem {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .nav-menu-visit-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .nav-menu-apply-btn {
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 375px) {
    .nav-menu {
        width: calc(100vw - 30px);
        max-width: 300px;
        right: 15px;
        left: auto;
        margin: 0;
    }
    
    .nav-menu-content {
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-menu-primary,
    .nav-menu-secondary {
        padding: 0 25px;
    }
    
    .nav-menu-item {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .nav-menu-secondary .nav-menu-item {
        font-size: 13px;
    }
    
    .nav-menu-item-text {
        font-size: 13px;
    }
    
    /* Add expand/collapse indicator for mobile */
    .nav-menu-dropdown::after {
        content: '+';
        float: right;
        font-size: 16px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .nav-menu-dropdown.active::after {
        content: '−';
        transform: rotate(0deg);
    }
    
    .nav-menu-submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(0, 0, 0, 0.1);
        margin-top: 5px;
        border-radius: 5px;
        min-width: auto;
        right: auto;
        top: auto;
    }
    
    .nav-menu-dropdown.active .nav-menu-submenu {
        display: block !important;
    }
    
    .nav-menu-submenu-level3 {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        background: rgba(0, 0, 0, 0.15) !important;
        margin-top: 3px !important;
        border-radius: 3px !important;
        min-width: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 8px 0 !important;
    }
    
    .nav-menu-subitem-level2.active .nav-menu-submenu-level3 {
        display: block !important;
    }
    
    .nav-menu-subitem {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .nav-menu-visit-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .nav-menu-apply-btn {
        font-size: 11px;
        padding: 6px 14px;
    }
}

/* Dark theme specific adjustments */
[data-theme="dark"] .search-bar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Section 5 - Industry Associations Dark Mode */
[data-theme="dark"] .section-5-heading {
    background-color: var(--surface);
}

/* Section 6 - Ideas in the News Dark Mode */
[data-theme="dark"] .news-carousel-column:nth-child(1) .news-column-content,
[data-theme="dark"] .news-carousel-column:nth-child(3) .news-column-content,
[data-theme="dark"] .news-carousel-column:nth-child(5) .news-column-content {
    background-color: var(--surface);
}

[data-theme="dark"] .news-carousel-column:nth-child(2) .news-column-content,
[data-theme="dark"] .news-carousel-column:nth-child(4) .news-column-content {
    background-color: var(--background);
}

[data-theme="dark"] .news-date {
    color: var(--default-text);
}

/* Footer Logo Dark Mode */
[data-theme="dark"] .footer-logo {
    filter: brightness(0) invert(1);
}

/* Link Styles */
.news-title a,
.section-7-program-text a,
.section-7-research-text a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover{
    color: var(--primary-blue);
}

/* Dark mode link hover colors */
[data-theme="dark"] .news-title{
    color: var(--primary-red);
}

/* Section 8 button and links */
.section-8-button,
.section-11-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-8-1-box {
    transition: all 0.3s ease;
}

.section-8-1-box:hover {
    background-color: var(--primary-red);
}

.section-8-1-box:hover .section-8-1-text {
    color: white;
}

/* Section 12 container links */
.section-12-container {
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-12-container:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-12-container:hover .section-12-heading,
.section-12-container:hover .section-12-subheading {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

/* Dark mode hover colors for section 12 */
[data-theme="dark"] .section-12-container:hover .section-12-heading,
[data-theme="dark"] .section-12-container:hover .section-12-subheading {
    color: var(--primary-red);
}

/* Brand Columns Dark Mode - White Background */
[data-theme="dark"] .brand-column {
    background-color: white;
}

/* Search Results Styling */
.search-results-info {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    text-align: center;
    display: none;
}

.search-navigation {
    display: flex;
    gap: 10px;
    margin: 8px 0;
    justify-content: center;
    display: none;
}

.search-nav-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-nav-btn:hover:not(:disabled) {
    background: var(--primary-red);
    transform: translateY(-1px);
}

.search-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Search Highlighting */
.search-highlight {
    background-color: #fff3cd;
    color: #856404;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.search-highlight.current {
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 0 0 2px #ffc107;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

[data-theme="dark"] .search-highlight.current {
    background-color: #ffeb3b;
    color: #000;
    box-shadow: 0 0 0 2px #ffeb3b;
}

/* Section 11 Title Links */
.section-11-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-11-title a:hover {
    color: #fa4141;
    text-decoration: none;
}

/* Grid Items Dark Mode - White Background */
[data-theme="dark"] .grid-item {
    background-color: #1a1a1a;
}

/* Section 9 Content Hover Dark Mode */
[data-theme="dark"] .section-9-column:hover .section-9-content {
    background-color: var(--background);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

/* Animation for hamburger menu */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Navigation Menu */
.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 500px;
    background-color: var(--secondary-blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: visible;
    /* Navigation menu is hidden by default, shown on hover */
}

.nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Menu Sections */
.nav-menu-section {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* Menu sections ensure proper stacking */

.nav-menu-primary {
    padding: 0 40px;
}

.nav-menu-secondary {
    padding: 0 40px;
}

/* Menu Items */
.nav-menu-item {
    font-family: 'MonaSans-Medium', 'Mona Sans Medium', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu-item span {
    position: relative;
    display: inline-block;
}

.nav-menu-item span::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.35s ease;
    overflow: hidden;
}

.nav-menu-item:hover span::before {
    width: 100%;
}

.nav-menu-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Secondary Menu Items (Smaller) */
.nav-menu-secondary .nav-menu-item {
    font-size: 16px;
    font-weight: 400;
}

/* Divider Line */
.nav-menu-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 40px;
}

/* Dropdown Menu */
.nav-menu-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-menu-item-text {
    font-family: 'MonaSans-Medium', 'Mona Sans Medium', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu-dropdown:hover .nav-menu-item-text {
    color: #ffffff;
    transform: translateX(5px);
}

/* Submenu */
.nav-menu-submenu {
    position: absolute;
    top: 0;
    right: 100%;
    background-color: var(--secondary-blue);
    padding: 15px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.nav-menu-subitem {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu-subitem span {
    position: relative;
    display: inline-block;
}

.nav-menu-subitem span::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.35s ease;
    overflow: hidden;
}

/* Only animate when the specific subitem is hovered, not when parent is hovered */
.nav-menu-subitem:hover span::before {
    width: 100%;
}

/* Ensure subitems don't inherit hover state from parent dropdown */
.nav-menu-dropdown:hover .nav-menu-subitem span::before {
    width: 0;
}

.nav-menu-dropdown:hover .nav-menu-subitem:hover span::before {
    width: 100%;
}

.nav-menu-subitem:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Level 2 Header Item (Program) - Bold, no link */
.nav-menu-subitem-header {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-weight: 700;
    color: white;
    padding: 10px 25px;
    display: block;
    position: relative;
    cursor: default;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
}

.nav-menu-subitem-header:hover {
    color: white;
    transform: none;
}

.nav-menu-subitem-header span::before {
    display: none;
}

/* Level 2 Dropdown Item (Undergraduate Program) */
.nav-menu-subitem-level2 {
    position: relative;
    cursor: pointer;
    padding: 10px 25px;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu-subitem-text-level2 {
    font-family: 'MonaSans-Medium', 'Mona Sans Medium', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
    position: relative;
    display: inline-block;
}

.nav-menu-subitem-text-level2::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.35s ease;
    overflow: hidden;
}

.nav-menu-subitem-level2:hover .nav-menu-subitem-text-level2::before {
    width: 100%;
}

.nav-menu-subitem-level2:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Level 3 Submenu */
.nav-menu-submenu-level3 {
    position: absolute;
    top: 0;
    right: 100%;
    background-color: var(--secondary-blue);
    padding: 15px 0;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.nav-menu-subitem-level2:hover .nav-menu-submenu-level3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Level 3 Items - Indented */
.nav-menu-subitem-level3 {
    padding: 8px 25px !important;
    font-size: 15px;
    opacity: 0.9;
    display: block;
    line-height: 1.3;
}

.nav-menu-subitem-level3:hover {
    opacity: 1;
}

/* Ensure level 3 items don't inherit hover state from parent */
.nav-menu-subitem-level2:hover .nav-menu-subitem-level3 span::before {
    width: 0 !important;
}

.nav-menu-subitem-level2:hover .nav-menu-subitem-level3:hover span::before {
    width: 100% !important;
}

/* Level 3 items base underline state */
.nav-menu-subitem-level3 span::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.35s ease;
    overflow: hidden;
}

/* Level 3 items individual hover underline */
.nav-menu-subitem-level3:hover span::before {
    width: 100%;
}

/* Visit Row with Apply Now Button */
.nav-menu-visit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.nav-menu-apply-btn {
    font-family: 'MADE-Outer-Sans-Bold', 'MADE Outer Sans Bold', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-blue);
    background-color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 35px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
}

.nav-menu-apply-btn:hover {
    background-color: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

/* Section 2 - Banner and Mission Statement */
.section-2 {
    width: 100%;
}

/* Row 1 - Banner */
.banner-row {
    width: 100%;
    position: relative;
}

.banner-container {
    position: relative;
    width: 100%;
}

.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -1px;
}

.banner-text {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 100ch;
    place-self: center;
}

.banner-text h1 {
    font-family: 'MonaSans-Black', 'Mona Sans Black', Arial, sans-serif;
    color: white;
    font-size: 5.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
}

/* Row 2 - Mission Statement */
.mission-row {
    background-color: var(--primary-blue);
    width: 100%;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px;
    text-align: center;
}

.mission-text {
    font-family: 'MonaSans-Regular', 'Mona Sans', Arial, sans-serif;
    color: white;
    font-size: 30px;
    line-height: 1.6;
    margin: 0;
    max-width: 46ch;
    place-self: center;
}

.mission-text strong {
    font-weight: 600;
}

/* Responsive Design for Section 2 */
@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .mission-container {
        padding: 60px 30px;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .banner-text h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .mission-container {
        padding: 40px 20px;
    }
    
    .mission-text {
        font-size: 1rem;
    }
}

/* Section 3 - Features Grid */
.section-3 {
    width: 100%;
    padding: 0px 100px;
    background-color: var(--background);
    border-bottom: 1px solid #969591;
}

.section-3-container {
    max-width: 1400px;
    margin: 0 auto;
}

.grid-row {
    display: flex;
}

.grid-row:last-child {
    margin-bottom: 0;
}

.grid-item {
    flex: 1;
    background-color: #ffffff;
    padding: 60px 20px 60px 80px;
    border-bottom: 1px solid #969591;
    transition: all 0.3s ease;
    cursor: pointer;
    border-right: 1px solid #969591;
    border-left: 1px solid #969591;
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #292A25;
    transition: left 0.5s ease;
    z-index: 0;
}

.grid-item:hover::before {
    left: 0;
}

.grid-item .grid-content {
    position: relative;
    z-index: 1;
}

.grid-item:hover .feature-subheading,
.grid-item:hover .feature-description {
    color: white;
}

.grid-content {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 60px;
}

.feature-icon {
    width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-subheading {
    font-family: 'SourceSerif4-MediumItalic', 'Source Serif 4 Medium Italic', 'Times New Roman', serif;
    color: var(--default-text);
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 15px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-description {
    font-family: 'MonaSans-Light', 'Mona Sans Light', Arial, sans-serif;
    color: var(--default-text);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
    transition: color 0.3s ease;
    max-width: 34ch;
    line-height: 1.3;
}

.feature-description strong {
    font-weight: 600;
}

/* Responsive Design for Section 3 */
@media (max-width: 768px) {
    .section-3 {
        padding: 60px 20px;
    }
    
    .grid-row {
        flex-direction: column;
    }
    
    .grid-item {
        padding: 30px;
    }
    
    .grid-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-subheading {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-3 {
        padding: 40px 15px;
    }
    
    .grid-item {
        padding: 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-subheading {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Section 4 - Industry Experts Carousel */
.section-4 {
    width: 100%;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* 4.1 Heading */
.section-4-heading {
    text-align: center;
    padding: 80px 0;
}

.section-4-heading h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
}

/* 4.2 Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 120px;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
}

.carousel-nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    left: 0;
    right: 0;
    align-self: anchor-center;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999894;
    cursor: pointer;
    padding: 0 30px;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-column {
    width: 33.333%; /* 100% / 3 visible columns */
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 730px;
}

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

.column-image {
    height: 50%;
    overflow: hidden;
    position: relative;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scale(1);
}

.column-content {
    height: 50%;
    background-color: #231f20;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-name {
    font-family: 'SourceSerif4-Light', 'Source Serif 4', 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    margin: 50px 0 50px 0;
    line-height: 1.3;
    font-style: italic;
    max-width: 15ch;
}

.expert-details {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 19px;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    max-width: 28ch;
}

/* Responsive Design for Section 4 */
@media (max-width: 768px) {
    .section-4-heading {
        padding: 60px 0;
    }
    
    .section-4-heading h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-column {
        height: 400px;
        margin: 0;
        padding: 0;
    }
    
    .column-image {
        height: 25%;
    }
    
    .column-content {
        padding: 5px 5px;
        justify-content: flex-start;
        gap: 15px;
        flex: 1;
        margin: 0;
    }
    
    .expert-name {
        font-size: 1.1rem;
        margin: 0;
        padding: 10px 0 5px 0;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .expert-details {
        font-size: 0.8rem;
        margin: 0;
        padding: 5px 0 10px 0;
        line-height: 1.3;
    }
    
    .nav-arrow {
        padding: 0 5px;
        font-size: 1rem;
    }
    
    .news-nav-arrow {
        padding: 0 2px !important;
        font-size: 0.8rem !important;
    }
    
    .news-carousel-column:nth-child(2) .news-title {
        font-size: 18px !important;
    }
    
    .news-carousel-column:nth-child(3) .news-title {
        font-size: 18px !important;
    }
    
    .news-column-content {
        padding: 15px 8px;
        justify-content: space-between;
        gap: 6px;
        overflow: visible;
        min-height: 0;
    }
    
    .news-title {
        font-size: 0.85rem !important;
        line-height: 1.2;
        margin: 0;
    }
    
    .news-profession {
        font-size: 0.75rem !important;
        margin: 0;
    }
    
    .news-meta {
        font-size: 0.7rem !important;
        margin: 8px 0 0 0;
    }
    
    .news-publisher,
    .news-date {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .section-4-heading {
        padding: 40px 0;
    }
    
    .section-4-heading h2 {
        font-size: 1.5rem;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-column {
        height: 350px;
        margin: 0;
        padding: 0;
    }
    
    .column-image {
        height: 25%;
    }
    
    .column-content {
        padding: 5px 5px;
        justify-content: flex-start;
        gap: 12px;
        flex: 1;
        margin: 0;
    }
    
    .expert-name {
        font-size: 1rem;
        margin: 0;
        padding: 8px 0 4px 0;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .expert-details {
        font-size: 0.75rem;
        margin: 0;
        padding: 4px 0 8px 0;
        line-height: 1.3;
    }
    
    .nav-arrow {
        padding: 0 3px;
        font-size: 0.9rem;
    }
    
    .news-nav-arrow {
        padding: 0 1px !important;
        font-size: 0.7rem !important;
    }
    
    .news-carousel-column:nth-child(2) .news-title {
        font-size: 18px !important;
    }
    
    .news-carousel-column:nth-child(3) .news-title {
        font-size: 18px !important;
    }
    
    .news-column-content {
        padding: 12px 6px;
        justify-content: space-between;
        gap: 5px;
        overflow: visible;
        min-height: 0;
    }
    
    .news-title {
        font-size: 0.8rem !important;
        line-height: 1.2;
        margin: 0;
    }
    
    .news-profession {
        font-size: 0.7rem !important;
        margin: 0;
    }
    
    .news-meta {
        font-size: 0.65rem !important;
        margin: 6px 0 0 0;
    }
    
    .news-publisher,
    .news-date {
        font-size: 12px !important;
    }
}

@media (max-width: 375px) {
    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-column {
        height: 320px;
        margin: 0;
        padding: 0;
    }
    
    .column-image {
        height: 25%;
    }
    
    .column-content {
        padding: 5px 5px;
        justify-content: flex-start;
        gap: 10px;
        flex: 1;
        margin: 0;
    }
    
    .expert-name {
        font-size: 0.95rem;
        margin: 0;
        padding: 6px 0 3px 0;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .expert-details {
        font-size: 0.7rem;
        margin: 0;
        padding: 3px 0 6px 0;
        line-height: 1.3;
    }
    
    .nav-arrow {
        padding: 0 2px;
        font-size: 0.8rem;
    }
    
    .news-nav-arrow {
        padding: 0 1px !important;
        font-size: 0.6rem !important;
    }
    
    .news-carousel-column:nth-child(2) .news-title {
        font-size: 18px !important;
    }
    
    .news-carousel-column:nth-child(3) .news-title {
        font-size: 18px !important;
    }
    
    .news-column-content {
        padding: 10px 5px;
        justify-content: space-between;
        gap: 4px;
        overflow: visible;
        min-height: 0;
    }
    
    .news-title {
        font-size: 0.75rem !important;
        line-height: 1.2;
        margin: 0;
    }
    
    .news-profession {
        font-size: 0.65rem !important;
        margin: 0;
    }
    
    .news-meta {
        font-size: 0.6rem !important;
        margin: 5px 0 0 0;
    }
    
    .news-publisher,
    .news-date {
        font-size: 12px !important;
    }
    
    .news-carousel-column {
        height: 450px;
        width: 50%;
    }
}

/* Section 5 - Industry Associations */
.section-5 {
    width: 100%;
    background-color: var(--background);
}

/* 5.1 Heading */
.section-5-heading {
    background-color: #F5F9F4;
    text-align: center;
    padding: 60px 0;
}

.section-5-heading h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
}

/* 5.2 Brand Logos Carousel */
.brands-carousel-container {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
}

.brands-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.brand-column {
    width: 16.667%; /* 100% / 6 visible columns */
    flex-shrink: 0;
    border-right: 1px solid #969591;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--background);
}

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

.brand-logo {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%) opacity(1);
}

/* Responsive Design for Section 5 */
@media (max-width: 768px) {
    .section-5-heading {
        padding: 20px 0;
    }
    
    .section-5-heading h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .brand-column {
        padding: 40px 15px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .section-5-heading {
        padding: 20px 0;
    }
    
    .section-5-heading h2 {
        font-size: 1.5rem;
    }
    
    .brand-column {
        padding: 30px 10px;
    }
    
    .brand-logo {
        max-height: 50px;
    }
}

/* Section 6 - Ideas in the News */
.section-6 {
    width: 100%;
    background-color: var(--background);
    border-bottom: 1px solid #969591;
}

/* 6.1 Heading */
.section-6-heading {
    text-align: center;
    padding: 80px 0;
}

.section-6-heading h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
}

/* 6.2 News Carousel */
.news-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 120px;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
}

.news-carousel-nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    left: 0;
    right: 0;
    align-self: anchor-center;
}

.news-nav-arrow {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999894;
    cursor: pointer;
    padding: 0 30px;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-nav-arrow:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.news-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.news-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.news-carousel-column {
    width: 33.333%; /* 100% / 3 visible columns */
    flex-shrink: 0;
    border-right: 1px solid #969591;
    display: flex;
    flex-direction: column;
    height: 650px;
    align-items: stretch;
}

.news-carousel-column:last-child {
    border-right: none;
}

.news-column-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.news-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scale(1);
}

.news-column-content {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

/* Alternating background colors */
.news-carousel-column:nth-child(1) .news-column-content {
    background-color: #f5f9f4;
}

.news-carousel-column:nth-child(2) .news-column-content {
    background-color: #ffffff;
}

.news-carousel-column:nth-child(3) .news-column-content {
    background-color: #f5f9f4;
}

.news-carousel-column:nth-child(4) .news-column-content {
    background-color: #ffffff;
}

.news-carousel-column:nth-child(5) .news-column-content {
    background-color: #f5f9f4;
}

.news-title {
    font-family: 'MonaSans-Regular', 'Mona Sans', Arial, sans-serif;
    font-size: 23px;
    font-weight: 400;
    color: var(--default-text);
    margin: 0 0 50px 0;
    line-height: 1.2;
    font-style: italic;
}

/* Column 2 title style */
.news-carousel-column:nth-child(2) .news-title {
    font-family: 'MonaSans-SemiBold', 'Mona Sans SemiBold', Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 33px;
}

/* Column 3 title style */
.news-carousel-column:nth-child(3) .news-title {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-weight: 400;
    font-size: 26px;
}

/* Column 4 title style (copy of Column 1) */
.news-carousel-column:nth-child(4) .news-title {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-weight: 700;
}

/* Column 5 title style (copy of Column 2) */
.news-carousel-column:nth-child(5) .news-title {
    font-family: 'MonaSans-SemiBold', 'Mona Sans SemiBold', Arial, sans-serif;
    font-weight: 600;
    font-style: italic;
}

.news-title strong {
    font-weight: 700;
}

.news-profession {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--default-text);
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.news-profession strong {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-weight: 700;
}

.news-meta {
    margin: 10px 0 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-publisher {
    font-family: 'SourceSerif4-Light', 'Source Serif 4', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--primary-red);
    font-style: italic;
    font-weight: 200;
}

.news-date {
    font-family: 'SourceSerif4-LightItalic', 'Source Serif 4 Light Italic', 'Times New Roman', serif;
    font-size: 18px;
    color: #292a25;
    font-style: italic;
    font-weight: 300;
}

/* Responsive Design for Section 6 */
@media (max-width: 768px) {
    .section-6-heading {
        padding: 60px 0;
    }
    
    .section-6-heading h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .news-carousel-container {
        padding: 0 50px;
    }
    
    .news-carousel-column {
        height: 550px;
        width: 50%;
    }
    
    .news-column-content {
        padding: 30px 20px;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-profession {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-6-heading {
        padding: 40px 0;
    }
    
    .section-6-heading h2 {
        font-size: 1.5rem;
    }
    
    .news-carousel-container {
        padding: 0 30px;
    }
    
    .news-carousel-column {
        height: 500px;
        width: 50%;
    }
    
    .news-column-content {
        padding: 10px 5px;
    }
    
    .news-title {
        font-size: 0.9rem;
    }
    
    .news-profession {
        font-size: 0.8rem;
    }
}

/* Section 7 - Programs that Drive Impact */
.section-7 {
    width: 100%;
    background-color: var(--background);
    padding: 0;
    margin-top: 7em;
}

.section-7-container {
    display: flex;
    width: 100%;
    height: 600px;
}

/* Column 1 - Image */
.section-7-column-1 {
    width: 48%;
    height: 100%;
    overflow: hidden;
}

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

/* Column 2 - Content */
.section-7-column-2 {
    width: 52%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Row 1 - Heading */
.section-7-row-1 {
    height: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 40px 55px;
    border-bottom: 1px solid #969591;
}

.section-7-heading {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
    line-height: 1;
}

/* Row 2 - BMS Program */
.section-7-row-2 {
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 40px 40px;
}

.section-7-program-text {
    font-family: 'SourceSerif4-SemiBold', 'Source Serif 4 SemiBold', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--default-text);
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.section-7-row-2:hover {
    background-color: var(--primary-blue);
}

.section-7-row-2:hover .section-7-program-text {
    color: white;
}

/* Row 3 - BMS with Research */
.section-7-row-3 {
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 40px 40px;
}

.section-7-research-text {
    font-family: 'SourceSerif4-SemiBold', 'Source Serif 4 SemiBold', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.section-7-row-3:hover {
    background-color: var(--primary-blue);
}

.section-7-row-3:hover .section-7-research-text {
    color: white;
}

/* Responsive Design for Section 7 */
@media (max-width: 768px) {
    .section-7-container {
        flex-direction: column;
        height: auto;
    }
    
    .section-7 {
        margin-top: 0;
    }
    
    .section-7-column-1 {
        width: 100%;
        height: 300px;
    }
    
    .section-7-column-2 {
        width: 100%;
        padding: 40px 30px;
    }
    
    .section-7-heading {
        font-size: 2rem;
    }
    
    .section-7-program-text,
    .section-7-research-text {
        font-size: 1.2rem;
    }
    
    .section-8 {
        margin-top: -2em !important;
    }
    
    .section-8-column:nth-child(1) {
        border-bottom: 1px solid white !important;
        border-right: 0 !important;
    }
    
    .section-8-column:nth-child(2) {
        border-bottom: 1px solid white !important;
        border-right: 0!important;
    }
    
    .section-8-number {
        font-size: 4rem !important;
    }
    
    .section-9-content {
        margin-top: -5px !important;
    }
    
    .section-11 {
        margin-top: 1px !important;
    }
    
    .section-11-content {
        height: auto !important;
    }
    
    .section-11-title {
        font-size: 20px !important;
    }
    
    .section-11-right .section-11-title {
        font-size: 20px !important;
    }
    
    .footer-logo {
        width: 260px !important;
    }
    
    .footer-column {
        align-items: center !important;
    }
    
    .grid-item {
        border-top: 1px solid #969591 !important;
    }
    
    .header {
        padding: 10px 15px 0px !important;
    }
}

@media (max-width: 480px) {
    .section-7 {
        margin-top: 0;
    }
    
    .section-7-column-1 {
        height: 250px;
    }
    
    .section-7-column-2 {
        padding: 30px 0px;
    }
    
    .section-7-heading {
        font-size: 1.8rem;
    }
    
    .section-7-program-text,
    .section-7-research-text {
        font-size: 1rem;
    }
    
    .section-8 {
        margin-top: -2em !important;
    }
    
    .section-8-column:nth-child(1) {
        border-bottom: 1px solid white !important;
        border-right: 0 !important;
    }
    
    .section-8-column:nth-child(2) {
        border-bottom: 1px solid white !important;
        border-right: 0!important;
    }
    
    .section-8-number {
        font-size: 4rem !important;
    }
    
    .section-9-content {
        margin-top: -5px !important;
    }
    
    .section-11 {
        margin-top: 1px !important;
    }
    
    .section-11-content {
        height: auto !important;
    }
    
    .section-11-title {
        font-size: 20px !important;
    }
    
    .section-11-right .section-11-title {
        font-size: 20px !important;
    }
    
    .footer-logo {
        width: 260px !important;
    }
    
    .footer-column {
        align-items: center !important;
    }
    
    .grid-item {
        border-top: 1px solid #969591 !important;
    }
    
    .header {
        padding: 10px 15px 0px !important;
    }
}

@media (max-width: 375px) {
    .section-7 {
        margin-top: 0;
    }
    
    .section-7-column-1 {
        height: 200px;
    }
    
    .section-7-column-2 {
        padding: 25px 0px;
    }
    
    .section-7-heading {
        font-size: 1.6rem;
    }
    
    .section-7-program-text,
    .section-7-research-text {
        font-size: 0.9rem;
    }
    
    .section-8 {
        margin-top: -2em !important;
    }
    
    .section-8-column:nth-child(1) {
        border-bottom: 1px solid white !important;
        border-right: 0 !important;
    }
    
    .section-8-column:nth-child(2) {
        border-bottom: 1px solid white !important;
        border-right: 0!important;
    }
    
    .section-8-number {
        font-size: 4rem !important;
    }
    
    .section-9-content {
        margin-top: -5px !important;
    }
    
    .section-11 {
        margin-top: 1px !important;
    }
    
    .section-11-content {
        height: auto !important;
    }
    
    .section-11-title {
        font-size: 20px !important;
    }
    
    .section-11-right .section-11-title {
        font-size: 20px !important;
    }
    
    .footer-logo {
        width: 260px !important;
    }
    
    .footer-column {
        align-items: center !important;
    }
    
    .grid-item {
        border-top: 1px solid #969591 !important;
    }
    
    .header {
        padding: 10px 15px 0px !important;
    }
}

/* Section 8 - The VU Business School Experience */
.section-8 {
    width: 100%;
    background-color: var(--primary-blue);
    padding: 0;
    margin-top: 6em;
}

/* Row 1 - Heading */
.section-8-row-1 {
    padding: 50px 0;
    text-align: center;
}

.section-8-heading {
    font-family: 'MonaSans-ExtraLight', 'Mona Sans ExtraLight', Arial, sans-serif;
    font-size: 40px;
    font-weight: 200;
    color: white;
    margin: 0;
    line-height: 1.2;
}

/* Row 2 - Three Columns */
.section-8-row-2 {
    display: flex;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.section-8-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    text-align: center;
    gap: 50px;
}

.section-8-column:nth-child(1),
.section-8-column:nth-child(2) {
    border-right: 1px solid white;
}

.section-8-number {
    font-family: 'SourceSerif4-Light', 'Source Serif 4 Light', 'Times New Roman', serif;
    font-size: 5rem;
    font-weight: 300;
    color: white;
}

.section-8-text {
    font-family: 'MonaSans-ExtraLightItalic', 'Mona Sans ExtraLight Italic', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
    font-style: italic;
    color: #ffffffa8;
    line-height: 1.4;
    text-align: left;
    max-width: 17ch;
}

/* Row 3 - Button */
.section-8-row-3 {
    padding: 40px 0;
    text-align: center;
}

.section-8-button {
    font-family: 'MADE-Outer-Sans-Bold', 'MADE Outer Sans Bold', Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: white;
    background-color: var(--primary-blue);
    border: 2px solid white;
    padding: 12px 70px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.section-8-button:hover {
    background-color: var(--primary-red);
    transform: scale(1.05);
}

/* Responsive Design for Section 8 */
@media (max-width: 768px) {
    .section-8-heading {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .section-8-row-1 {
        padding: 60px 0;
    }
    
    .section-8-row-2 {
        flex-direction: column;
    }
    
    .section-8-column {
        padding: 40px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-8-number {
        font-size: 2.5rem;
    }
    
    .section-8-text {
        font-size: 1rem;
    }
    
    .section-8-row-3 {
        padding: 60px 0;
    }
    
    .section-8-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .section-8-heading {
        font-size: 1.8rem;
    }
    
    .section-8-row-1 {
        padding: 40px 0;
    }
    
    .section-8-column {
        padding: 30px 15px;
    }
    
    .section-8-number {
        font-size: 2rem;
    }
    
    .section-8-text {
        font-size: 0.9rem;
    }
    
    .section-8-row-3 {
        padding: 40px 0;
    }
    
    .section-8-button {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

/* Section 8.1 - Quick Links */
.section-8-1 {
    width: 100%;
    padding: 0;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
    margin-top: 0;
}

.section-8-1-container {
    display: flex;
    width: 100%;
}

.section-8-1-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #F5F9F4;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 120px;
}

.section-8-1-box:nth-child(1),
.section-8-1-box:nth-child(2),
.section-8-1-box:nth-child(3) {
    border-right: 1px solid #969591;
}

.section-8-1-text {
    font-family: 'SourceSerif4-Italic', 'Source Serif 4 Italic', 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 400;
    font-style: italic;
    color: #292A25;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
    max-width: 10ch;
}

.section-8-1-box:hover {
    background-color: var(--primary-red);
}

.section-8-1-box:hover .section-8-1-text {
    color: white;
}

/* Responsive Design for Section 8.1 */
@media (max-width: 768px) {
    .section-8-1-container {
        flex-direction: column;
    }
    
    .section-8-1-box {
        padding: 30px 20px;
        min-height: 100px;
        border-right: none !important;
        border-bottom: 1px solid #969591;
    }
    
    .section-8-1-box:last-child {
        border-bottom: none;
    }
    
    .section-8-1-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-8-1-box {
        padding: 25px 15px;
        min-height: 80px;
    }
    
    .section-8-1-text {
        font-size: 1rem;
    }
}

/* Section 9 - At the Frontlines of Innovation */
.section-9 {
    width: 100%;
    padding: 0;
}

/* Heading */
.section-9-heading {
    padding: 60px 0;
    text-align: center;
}

.section-9-heading h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 47px;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
    line-height: 1.2;
}

/* Container with left/right spacing and borders */
.section-9-container {
    padding: 0 120px;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
    display: flex;
}

/* Column Structure */
.section-9-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 750px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Image Container (50% height) */
.section-9-image-container {
    height: 50%;
    overflow: hidden;
    transition: height 0.4s ease;
}

.section-9-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, object-position 0.4s ease;
}

/* Content Container (50% height) */
.section-9-content {
    height: 50%;
    background-color: #231F20;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.section-9-content {
    border-left: 1px solid #969591;
    border-right: 1px solid #969591;
}

.section-9-subheading {
    font-family: 'SourceSerif4-MediumItalic', 'Source Serif 4 Medium Italic', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    transition: color 0.4s ease;
}

.section-9-paragraph {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: transparent;
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Effects */
.section-9-column:hover .section-9-image-container {
    height: 30%;
}

.section-9-column:hover .section-9-content {
    height: 70%;
    background-color: white;
    padding: 50px 30px;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 45px;
}

.section-9-column:hover .section-9-content {
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.section-9-column:hover .section-9-subheading {
    color: var(--default-text);
    margin-bottom: 20px;
}

.section-9-column:hover .section-9-paragraph {
    color: var(--default-text);
    opacity: 1;
    height: auto;
    overflow: visible;
    font-family: 'MonaSans-Regular';
    font-size: 19px;
    max-width: 30ch;
    line-height: 1.2;
}

.section-9-column:hover .section-9-image {
    transform: scale(1.1);
    object-position: top;
}

/* Responsive Design for Section 9 */
@media (max-width: 1024px) {
    .section-9-container {
        padding: 0 80px;
    }
    
    .section-9-heading h2 {
        font-size: 2.2rem;
    }
    
    .section-9-column {
        height: 690px;
    }
}

@media (max-width: 768px) {
    .section-9-container {
        padding: 0 40px;
        flex-direction: column;
    }
    
    .section-9-heading {
        padding: 60px 0;
    }
    
    .section-9-heading h2 {
        font-size: 2rem;
    }
    
    .section-9-column {
        height: 600px;
        margin-bottom: 0;
    }
    
    .section-9-column:last-child {
        margin-bottom: 0;
    }
    
    .section-9-content {
        padding: 30px 20px;
    }
    
    .section-9-subheading {
        font-size: 1.2rem;
    }
    
    .section-9-paragraph {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-9-container {
        padding: 0 20px;
    }
    
    .section-9-heading {
        padding: 40px 0;
    }
    
    .section-9-heading h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .section-9-column {
        height: 525px;
    }
    
    .section-9-content {
        padding: 25px 15px;
    }
    
    .section-9-subheading {
        font-size: 1.1rem;
    }
    
    .section-9-paragraph {
        font-size: 0.85rem;
    }
}

/* Section 10 - Student Ventures & Innovations */
.section-10 {
    width: 100%;
    padding: 0;
    margin-top: 80px;
}

/* Heading */
.section-10-heading {
    padding: 50px 0px;
    text-align: center;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
}

.section-10-heading h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
    line-height: 1.2;
    
}

/* Container */
.section-10-container {
    display: flex;
    width: 100%;
}

/* Column Structure */
.section-10-column {
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Content Container */
.section-10-content {
    background-color: #231F20;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 512px;
}

.section-10-column:nth-child(1) .section-10-content,
.section-10-column:nth-child(2) .section-10-content,
.section-10-column:nth-child(3) .section-10-content {
    border-right: 1px solid #969591;
}

.section-10-name {
    font-family: 'SourceSerif4-MediumItalic', 'Source Serif 4 Medium Italic', 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}

.section-10-paragraph {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.5;
    text-align: left;
    transition: all 0.3s ease;
    max-width: 100%;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Hover Effects */
.section-10-column:hover .section-10-content {
    background-color: #fa4141;
}

.section-10-column:hover .section-10-name,
.section-10-column:hover .section-10-paragraph {
    color: white;
}

.section-10-column:hover .section-10-paragraph {
    opacity: 1;
    height: auto;
    overflow: visible;
}

/* Responsive Design for Section 10 */
@media (max-width: 1024px) {
    .section-10-heading h2 {
        font-size: 2.2rem;
    }
    
    .section-10-content {
        padding: 50px 30px;
        min-height: 280px;
    }
    
    .section-10-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-10 {
        margin-top: 60px;
    }
    
    .section-10-heading {
        padding: 60px 0;
    }
    
    .section-10-heading h2 {
        font-size: 2rem;
    }
    
    .section-10-container {
        flex-direction: column;
    }
    
    .section-10-content {
        padding: 40px 25px;
        min-height: 250px;
        border-right: none !important;
        border-bottom: 1px solid #969591;
    }
    
    .section-10-column:last-child .section-10-content {
        border-bottom: none;
    }
    
    .section-10-name {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .section-10-paragraph {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-10 {
        margin-top: 40px;
    }
    
    .section-10-heading {
        padding: 40px 0;
    }
    
    .section-10-heading h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .section-10-content {
        padding: 30px 20px;
        min-height: 220px;
    }
    
    .section-10-name {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .section-10-paragraph {
        font-size: 0.85rem;
    }
}

/* Section 11 - Faculty Thought Leadership */
.section-11 {
    width: 100%;
    padding: 0;
    margin-top: 80px;
}

/* Header */
.section-11-header {
    background-color: var(--primary-red);
    padding: 40px 0;
    text-align: center;
}

.section-11-header h2 {
    font-family: 'SourceSerif4-Italic', 'Source Serif 4 Italic', 'Times New Roman', serif;
    font-size: 45px;
    font-weight: 400;
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.2;
}

/* Container */
.section-11-container {
    display: flex;
    width: 100%;
}

/* Column Structure */
.section-11-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #969591;
}

/* Image Container */
.section-11-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.section-11-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Container */
.section-11-content {
    background-color: var(--primary-blue);
    padding: 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 300px;
    justify-content: center;
}

.section-11-title {
    font-family: 'MonaSans-SemiBold', 'Mona Sans SemiBold', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
    max-width: 30ch;
}

/* Specific styling for left column title */
.section-11-left .section-11-title {
    max-width: 30ch;
}

/* Specific styling for right column title */
.section-11-right .section-11-title {
    max-width: 35ch;
    font-size: 26px;
}

.section-11-professor {
    font-family: 'MonaSans-Light', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: white;
    margin: 0;
    line-height: 1.3;
    max-width: 18ch;
}

/* Meet Our Faculty Button */
.section-11-button-container {
    padding: 40px 0;
    text-align: center;
}

.section-11-button {
    font-family: 'MADE-Outer-Sans-Bold', 'MADE Outer Sans Bold', Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: white;
    background-color: #0392F9;
    border: none;
    padding: 10px 80px;
    border-radius: 35px;
    cursor: pointer;
    letter-spacing: .5px;
}

.section-11-button:hover {
    background-color: var(--primary-red);
}

/* Responsive Design for Section 11 */
@media (max-width: 1024px) {
    .section-11-header h2 {
        font-size: 1.8rem;
    }
    
    .section-11-image-container {
        height: 220px;
    }
    
    .section-11-content {
        padding: 35px 25px;
        min-height: 180px;
    }
    
    .section-11-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-11 {
        margin-top: 60px;
    }
    
    .section-11-header {
        padding: 35px 0;
    }
    
    .section-11-header h2 {
        font-size: 1.6rem;
    }
    
    .section-11-container {
        flex-direction: column;
    }
    
    .section-11-image-container {
        height: 200px;
    }
    
    .section-11-content {
        padding: 30px 20px;
        min-height: 160px;
        gap: 12px;
    }
    
    .section-11-title {
        font-size: 1rem;
    }
    
    .section-11-professor {
        font-size: 0.9rem;
    }
    
    .section-11-button-container {
        padding: 60px 0;
    }
    
    .section-11-button {
        font-size: 1rem;
        padding: 15px 35px;
    }
}

@media (max-width: 480px) {
    .section-11 {
        margin-top: 40px;
    }
    
    .section-11-header {
        padding: 30px 0;
    }
    
    .section-11-header h2 {
        font-size: 1.4rem;
        padding: 0 20px;
    }
    
    .section-11-image-container {
        height: 180px;
    }
    
    .section-11-content {
        padding: 25px 15px;
        min-height: 140px;
        gap: 10px;
    }
    
    .section-11-title {
        font-size: 0.95rem;
    }
    
    .section-11-professor {
        font-size: 0.85rem;
    }
    
    .section-11-button-container {
        padding: 60px 0;
    }
    
    .section-11-button {
        font-size: 1rem;
        padding: 15px 35px;
    }
}

/* Section 12 - Events */
.section-12 {
    width: 100%;
    padding: 0 120px;
    border-top: 1px solid #969591;
    border-bottom: 1px solid #969591;
}

/* Row 1 - Heading */
.section-12-row-1 {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #969591;
    border-right: 1px solid #969591;
    border-left: 1px solid #969591;
}

.section-12-row-1 h2 {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: var(--default-text);
    margin: 0;
    line-height: 1.2;
}

/* Container for Rows 2 & 3 */
.section-12-container {
    display: flex;
    align-items: center;
    border-right: 1px solid #969591;
    border-left: 1px solid #969591;
}

/* Left Column - Image */
.section-12-left {
    flex: 1;
    display: flex;
    align-items: stretch;
}

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

/* Right Column - Text */
.section-12-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.section-12-heading {
    font-family: 'MonaSans-SemiBoldItalic', 'Mona Sans SemiBold Italic', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--default-text);
    margin: 0;
    line-height: 1.3;
    padding-left: 45px;
}

.section-12-row-3 {
    border-top: 1px solid #969591;
}

.section-12-subheading {
    font-family: 'SourceSerif4-Italic', 'Source Serif 4 Italic', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--default-text);
    margin: 0;
    line-height: 1.4;
    padding-left: 45px;
    max-width: 34ch;
}

/* Responsive Design for Section 12 */
@media (max-width: 1024px) {
    .section-12 {
        padding: 0 80px;
    }
    
    .section-12-row-1 {
        padding: 25px 0;
    }
    
    .section-12-row-1 h2 {
        font-size: 38px;
    }
    
    .section-12-image {
        height: 180px;
    }
    
    .section-12-right {
        gap: 12px;
    }
    
    .section-12-heading {
        font-size: 1.8rem;
        padding-left: 35px;
    }
    
    .section-12-subheading {
        font-size: 24px;
        padding-left: 35px;
        max-width: 30ch;
    }
}

@media (max-width: 768px) {
    .section-12 {
        padding: 0 40px;
    }
    
    .section-12-row-1 {
        padding: 20px 0;
    }
    
    .section-12-row-1 h2 {
        font-size: 32px;
    }
    
    .section-12-container {
        flex-direction: column;
    }
    
    .section-12-image {
        height: 160px;
    }
    
    .section-12-right {
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }
    
    .section-12-heading {
        font-size: 1.6rem;
        padding-left: 0;
    }
    
    .section-12-subheading {
        font-size: 20px;
        padding-left: 0;
        max-width: 100%;
    }
    
    .section-12-row-3 {
        margin-top: -1px;
    }
}

@media (max-width: 480px) {
    .section-12 {
        padding: 0 20px;
    }
    
    .section-12-row-1 {
        padding: 15px 0;
    }
    
    .section-12-row-1 h2 {
        font-size: 28px;
    }
    
    .section-12-container {
        flex-direction: column;
    }
    
    .section-12-image {
        height: 140px;
    }
    
    .section-12-right {
        gap: 8px;
        text-align: center;
        padding: 15px 0;
    }
    
    .section-12-heading {
        font-size: 1.4rem;
        padding-left: 0;
    }
    
    .section-12-subheading {
        font-size: 18px;
        padding-left: 0;
        max-width: 100%;
    }
    
    .section-12-row-3 {
        margin-top: -1px;
    }
}

/* Footer Section */
.footer {
    width: 100%;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 120px 40px 120px;
    display: flex;
    gap: 80px;
}

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

/* Column 1 - Logo and Address */
.footer-logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
}

.footer-address-label {
    font-family: 'MonaSans-Medium', 'Mona Sans Medium', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--default-text);
    margin: 0 0 15px 0;
}

.footer-address-text {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 15px;
    color: var(--default-text);
    line-height: 1.6;
    margin: 0;
}

/* Column 2 - Quick Links */
.footer-heading {
    font-family: 'MonaSans-Bold', 'Mona Sans Bold', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--default-text);
    margin: 0 0 25px 0;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0392F9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 15px;
    color: var(--default-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Column 3 - Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.footer-contact-label {
    font-family: 'MonaSans-Medium', 'Mona Sans Medium', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--default-text);
}

.footer-contact-link {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 15px;
    color: var(--default-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

.footer-social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border);
    background-color: var(--background);
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 14px;
    color: var(--default-text);
    margin: 0;
}

.footer-legal {
    font-family: 'MonaSans-Regular', 'Mona Sans Regular', Arial, sans-serif;
    font-size: 14px;
    color: var(--default-text);
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-legal {
        white-space: normal;
        line-height: 1.4;
        text-align: center;
    }
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-container {
        padding: 60px 80px 30px 80px;
        gap: 60px;
    }
    
    .footer-bottom-container {
        padding: 20px 80px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 40px 25px 40px;
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        width: 150px;
        margin-bottom: 20px;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-bottom-container {
        padding: 20px 40px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 20px 20px 20px;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        width: 120px;
        margin-bottom: 15px;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-address-label,
    .footer-address-text,
    .footer-link,
    .footer-contact-label,
    .footer-contact-link {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom-container {
        padding: 15px 20px;
    }
    
    .footer-copyright,
    .footer-legal {
        font-size: 12px;
    }
}
