/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #293132;
    overflow-x: hidden;
    padding-top: 130px;
    /* Account for fixed header height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Responsive column classes */
.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

[class*="col-"] {
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000 !important;
    color: white !important;
    border: none;
}

.btn-primary:hover {
    background: #333 !important;
}

.btn-outline-primary {
    border: 2px solid #000 !important;
    color: #000 !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #000;
    color: white !important;
}

.employee-intranet {
    height: 19px;
    padding: 1px 13px;
    margin-left: 10px;
    font-size: 12px;
    color: #fff !important;
    border-radius: 4px;
    background: #e5004b !important;
}

.employee-intranet:hover {
    background: #c40042 !important;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    padding: 5px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .social-icons a {
    color: #000;
    margin-right: 10px;
    font-size: 14px;
    text-decoration: none;
}

.top-bar .top-links a {
    margin-left: 15px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.top-bar .btn-intranet {
    background: #e5004b;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    position: relative;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #293132;
    padding: 5px;
    z-index: 1001;
}

.main-header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-header nav ul li {
    margin: 0 15px;
    position: relative;
}

.main-header nav ul li a {
    text-decoration: none;
    color: #293132;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.main-header nav ul li a:hover {
    color: #e5004b;
}

.main-header .logo img {
    height: 50px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle .fas.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fas.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #293132;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #e5004b;
    border-left-color: #e5004b;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    margin-left: 15px;
    font-size: 16px;
    cursor: pointer;
    color: #293132;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #e5004b;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 15px;
    z-index: 1001;
    display: none;
}

.search-box.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.search-input:focus {
    outline: none;
    border-color: #e5004b;
}

.search-submit {
    background: #000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #333;
}

.search-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #293132;
    padding: 5px;
}

.search-close:hover {
    color: #e5004b;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-container {
    background: white;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #293132;
    z-index: 1001;
}

.mobile-nav-header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.mobile-logo img {
    height: 50px;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
}

.mobile-nav ul li {
    margin-bottom: 0;
    text-align: center;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #293132;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #e5004b;
    background: #f8f9fa;
}

.mobile-nav ul li a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.mobile-dropdown.active .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 0 20px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a:hover {
    color: #e5004b;
    background: #fff;
}

.mobile-top-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.mobile-top-links a {
    margin-bottom: 10px;
    color: #293132;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-top-links a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-social-icons a {
    color: #293132;
    margin: 0 10px;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: -130px;
    /* Compensate for fixed header */
}

.hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #f2f6f7;
    /* light background similar to image */
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.breadcrumbs li a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs li a:hover {
    color: #666;
}

.breadcrumbs li+li::before {
    content: "›";
    /* arrow separator */
    margin: 0 8px;
    color: #a0a0a0;
    font-size: 14px;
}

.breadcrumbs li:last-child a {
    color: #000;
    pointer-events: none;
    /* current page not clickable */
}

/* Main Content Sections */
.main-content section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.dark-bg {
    background-color: #293132;
}

.content-block {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.image-block {
    position: relative;
    z-index: 0;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

/* Reverse mobile layout */
.reverse-mobile {
    flex-direction: row;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.print-btn,
.share-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #293132;
    cursor: pointer;
    margin-right: 1rem;
}

.print-btn:hover,
.share-btn:hover {
    color: #e5004b;
}

/* Teaser Sections */
.teaser {
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.teaser .bg-image {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
}

.teaser h2 {
    margin-bottom: 2rem;
}

.teaser p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Benefits Grid */
.benefits-grid .row {
    margin-bottom: 3rem;
}

/* Cards Slider */
.cards-slider-container {
    position: relative;
    overflow: hidden;
}

.cards-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.cards-slider::-webkit-scrollbar {
    display: none;
}

.card {
    background: transparent;
    border: none;
    min-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.card a {
    text-decoration: none;
    color: inherit;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem 0;
}

.card-body h3 {
    color: white;
    margin-bottom: 1rem;
}

.card-body p {
    color: white;
}

.dark-bg .section-header h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

/* Site Map Styles */
.site-map {
    background: #293132;
    padding: 3rem 0;
    border-bottom: 1px solid #dee2e6;
}

.site-map-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.site-map-column {
    flex: 1;
    min-width: 200px;
}

.site-map-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.site-map-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;

}

.site-map-links:last-child {
    margin-bottom: 0;
}

.site-map-links li {
    margin-bottom: 0.5rem;
}

.site-map-links a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
}

.site-map-links a:hover {
    color: #e5004b;
}

/* Responsive adjustments for site map */
@media (max-width: 1024px) {
    .site-map-column {
        flex: 0 0 calc(33.333% - 2rem);
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .site-map {
        padding: 2rem 0;
    }

    .site-map-column {
        flex: 0 0 calc(50% - 1rem);
        min-width: 150px;
    }

    .site-map-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .site-map-column {
        flex: 0 0 100%;
        min-width: auto;
    }

    .site-map-title {
        font-size: 15px;
        margin-bottom: 0.75rem;
    }

    .site-map-links a {
        font-size: 13px;
    }
}

/* Footer */
.footer {
    background: #192229;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-logo-section {
    flex: 0 0 auto;
}

.footer-links-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-footer img {
    height: 30px;
}

.copyright-text {
    font-size: 0.875rem;
    color: #ffff;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #e5004b;
}

/* Text Colors */
.text-primary {
    color: #e5004b !important;
}

.read-more {
    color: #e5004b;
    text-decoration: none;
}

.read-more:hover {
    color: #c40042;
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e5004b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    background: #c40042;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
        margin: 5px 0;
    }

    .main-header nav ul li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .hero {
        margin-top: -120px;
    }

    .breadcrumbs {
        margin-top: 120px;
    }

    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .social-icons {
        margin-bottom: 5px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .main-header-container {
        justify-content: space-between;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-container {
        margin-left: auto;
    }

    .search-box {
        width: 280px;
        right: -50px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-section {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .col-6,
    .col-3,
    .col-sm-6,
    .col-md-6,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cards-slider {
        flex-direction: row;
    }

    .card {
        min-width: calc(100vw - 60px);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .col-2,
    .col-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-content section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .content-block {
        padding: 1rem;
    }
}

@media (min-width: 576px) {
    .logo img {
        width: 77px !important;
        height: 77px !important;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card {
        min-width: calc(50vw - 60px);
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .card {
        min-width: calc(33.333% - 40px);
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    .fixed-header {
        position: static;
    }

    body {
        padding-top: 0;
    }
}