/* ============================================================
   MATCH SOLUTION - ROYAL BLUE THEME
   ============================================================ */

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

body {
    background: url('../images/bg.jpg') #f5f8fc repeat-x;
    font-size: 13px;
    font-family: Arial, Verdana, "新細明體", PMingLiu;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1a2a4a;
}

.container, .banner-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #0b1a3a;
    padding: 5px 0;
    border-bottom: 2px solid #1a4c8a;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 2px;
}

.language-switcher a {
    color: #b8d0e8;
    text-decoration: none;
    padding: 3px 12px;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background: #1a3a6a;
    color: #fff;
}

.language-switcher a.active {
    background: #1a4c8a;
    color: #fff;
}

/* ===== HEADER ===== */
.header-main {
    background: #f8faff;
    padding: 10px 0;
    border-bottom: 2px solid #2a6aba;
    position: relative;
    z-index: 100;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 10px 16px;
    color: #1a4c8a;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav ul li a:hover {
    background: #1a4c8a;
    color: #fff;
    text-decoration: none;
}

.main-nav ul li a.active {
    background: #1a4c8a;
    color: #fff;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown > a::after {
    content: " ▾";
    font-size: 10px;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(10, 30, 60, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 9999;
    list-style: none;
    border: 1px solid #a0bcd4;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown.active .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: #1a2a4a !important;
    font-weight: normal !important;
    font-size: 13px;
    border-bottom: 1px solid #e8eef5;
    border-radius: 0 !important;
    white-space: nowrap;
    background: transparent !important;
    transition: all 0.2s ease;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: #1a4c8a !important;
    color: #ffffff !important;
    text-decoration: none;
    padding-left: 28px;
}

.dropdown-menu li a::before {
    content: "→ ";
    opacity: 0;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
}

/* ===== MOBILE NAV TOGGLE ===== */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 5px;
    flex-direction: column;
    gap: 5px;
    margin-left: 10px;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a4c8a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle:hover span {
    background: #2a6aba;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        background: #ffffff;
        padding: 10px 0;
        border-top: 2px solid #1a4c8a;
        margin-top: 10px;
        flex: none;
        justify-content: flex-start;
        box-shadow: 0 5px 15px rgba(10, 30, 60, 0.1);
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #e8eef5;
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 0;
        white-space: normal;
        background: transparent !important;
    }
    
    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: #e8f0fe !important;
        color: #1a4c8a !important;
        border-radius: 0;
    }
    
    .dropdown > a::after {
        float: right;
        content: " ▾";
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 20px !important;
        background: transparent !important;
        border-radius: 0 !important;
        min-width: auto !important;
        display: none !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li {
        border-bottom: none !important;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px !important;
        font-size: 13px !important;
        border-bottom: 1px solid #e8eef5 !important;
        white-space: normal !important;
        color: #1a3a6a !important;
    }
    
    .dropdown-menu li:last-child a {
        border-bottom: none !important;
    }
    
    .dropdown-menu li a:hover {
        background: #e8f0fe !important;
        color: #1a4c8a !important;
        padding-left: 25px !important;
    }
    
    .dropdown-menu li a::before {
        content: "• ";
        opacity: 1;
    }
    
    .dropdown-menu li a:hover::before {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .main-nav ul li a {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .dropdown-menu li a {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }

    .map-info h3 {
        font-size: 17px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* ===== HOME PAGE ===== */
.page-home {
    padding: 0;
}

.hero-slider {
    margin: 0 0 30px 0;
}

.hero-slider .bxslider {
    margin: 0;
    padding: 0;
}

.hero-slider .bxslider li {
    list-style: none;
}

.hero-slider .bxslider img {
    width: 100%;
    height: auto;
    display: block;
}

.home-boxes {
    padding: 10px 0 30px 0;
}

.home-boxes .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.home-box {
    background: linear-gradient(145deg, #f5f8fc 0%, #e0eaf5 100%);
    background-size: cover;
    min-height: 300px;
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
    transition: all 0.3s ease;
}

.home-box:hover {
    box-shadow: 0 5px 20px rgba(10, 30, 60, 0.1);
    transform: translateY(-3px);
}

.box-title {
    color: #1a4c8a;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0 12px 10px;
    border-bottom: 2px solid #a0bcd4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.box-content {
    padding: 15px 0 5px 10px;
}

.box-content img {
    max-width: 80%;
    height: auto;
    border-radius: 4px;
}

.product-slogan {
    margin-top: 12px;
    color: #1a4c8a;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(10, 30, 60, 0.1);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8eef5;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list a {
    color: #1a4c8a;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.service-list a:hover {
    font-size: 14px;
    text-decoration: underline;
    padding-left: 5px;
    color: #2a6aba;
}

.about-image {
    float: left;
    margin: 0 15px 10px 0;
    border: 2px solid #a0bcd4;
    border-radius: 5px;
    width: 97px;
    height: auto;
}

/* ===== BANNER WITH PADDING ===== */
.home-banner-padded {
    padding: 20px 0 10px 0;
}

.banner-padded-wrapper {
    text-align: center;
    padding: 0 0px;
}

.padded-banner {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(10, 30, 60, 0.1);
    border: 1px solid #a0bcd4;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .banner-padded-wrapper {
        padding: 0 10px;
    }
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    margin: 15px 0 25px 0;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid transparent;
}

.alert-success {
    background: #e8f0fe;
    color: #1a3a6a;
    border-color: #1a4c8a;
}

.alert-error {
    background: #fde8e8;
    color: #6a1a1a;
    border-color: #8a2a2a;
}

.alert-info {
    background: #e8f0fe;
    color: #1a3a6a;
    border-color: #2a6aba;
}

/* ===== PAGE TITLE ===== */
.page-title {
    color: #1a4c8a;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid #a0bcd4;
    margin-bottom: 25px;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PAGE ===== */
.page-about {
    padding: 10px 0 30px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #e8f0fe;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
    border-radius: 4px;
}

.about-company {
    margin: 30px 0;
    padding: 25px;
    background: #f8faff;
    border: 1px solid #a0bcd4;
    border-radius: 8px;
    overflow: hidden;
}

.about-company-image {
    float: right;
    margin: 0 0 15px 20px;
    border: 2px solid #a0bcd4;
    border-radius: 8px;
    max-width: 200px;
    height: auto;
}

.company-name {
    color: #1a4c8a;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(10, 30, 60, 0.05);
}

.about-company-text {
    font-size: 14px;
    line-height: 1.8;
}

.about-philosophy {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
    padding: 18px 22px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c0d4e8;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
}

.about-experience {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
    padding: 18px 22px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c0d4e8;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #2a6aba, #4a8ac8) 1;
}

/* ===== SERVICES PAGE ===== */
.page-services {
    padding: 10px 0 30px 0;
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-intro {
    font-size: 14px;
    margin: 30px 0;
    padding: 25px;
    background: #f8faff;
    border: 1px solid #a0bcd4;
    border-radius: 8px;
    overflow: hidden;
}

.services-intro strong {
    color: #1a4c8a;
}

.service-item {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #f8faff;
    border: 1px solid #a0bcd4;
    border-radius: 8px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 2px 15px rgba(10, 30, 60, 0.08);
}

.service-item h2 {
    color: #1a4c8a;
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8eef5;
}

.service-item p {
    line-height: 1.8;
    margin: 0;
}

.service-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-detailed li {
    padding: 8px 0;
    border-bottom: 1px solid #e8eef5;
    line-height: 1.7;
}

.service-list-detailed li:last-child {
    border-bottom: none;
}

.service-list-detailed li strong {
    color: #1a4c8a;
    display: inline-block;
    min-width: 120px;
}

/* ===== PRODUCTS PAGES ===== */
.page-products {
    padding: 10px 0 30px 0;
}

.products-content {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.benefit-section {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #e8f0fe;
    border-radius: 8px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
}

.highlight-section {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #e8f0fe;
    border-radius: 8px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
}

.benefit-section h2,
.highlight-section h2 {
    color: #1a4c8a;
    font-size: 17px;
    margin-bottom: 10px;
}

.benefit-section p,
.highlight-section p {
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

/* ===== PRODUCTS - MODULES ===== */
.modules-grid-detailed {
    background: #f8faff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
}

.module-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 15px 0;
}

.module-row-full {
    padding: 15px 0;
}

.module-item {
    padding: 18px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c0d4e8;
    transition: all 0.3s ease;
}

.module-item:hover {
    box-shadow: 0 2px 10px rgba(10, 30, 60, 0.06);
}

.module-item-full {
    padding: 18px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c0d4e8;
}

.module-icon {
    width: 56px;
    height: 56px;
    border: 2px solid #a0bcd4;
    border-radius: 8px;
    margin-bottom: 10px;
    display: inline-block;
}

.module-item h3,
.module-item-full h3 {
    color: #1a4c8a;
    font-size: 15px;
    margin-bottom: 10px;
}

.module-item ul,
.module-item-full ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-item ul li,
.module-item-full ul li {
    padding: 4px 0 4px 20px;
    font-size: 13px;
    color: #1a3a6a;
    position: relative;
}

.module-item ul li::before,
.module-item-full ul li::before {
    content: "•";
    color: #1a4c8a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.module-divider {
    border: 0;
    height: 1px;
    background: #c0d4e8;
    margin: 5px 0;
}

/* ===== PRODUCTS - REQUIREMENTS ===== */
.requirements-content {
    max-width: 850px;
    margin: 0 auto;
}

.requirements-content > p {
    line-height: 1.8;
    padding: 20px 25px;
    background: #e8f0fe;
    border-radius: 8px;
    border-left: 4px solid;
    border-image: linear-gradient(180deg, #1a4c8a, #4a8ac8) 1;
    font-size: 14px;
}

.network-diagram {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
}

.diagram-link {
    display: inline-block;
    cursor: pointer;
}

.diagram-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #a0bcd4;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.diagram-image:hover {
    border-color: #1a4c8a;
    box-shadow: 0 0 20px rgba(26, 76, 138, 0.15);
}

.enlarge-link {
    display: inline-block;
    margin-top: 10px;
    color: #1a4c8a;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enlarge-link:hover {
    text-decoration: underline;
    font-size: 15px;
}

/* ===== CLIENTS PAGE ===== */
.page-clients {
    padding: 10px 0 30px 0;
}

.clients-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 30px;
    padding: 25px 30px;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
    transition: all 0.3s ease;
}

.testimonial:hover {
    box-shadow: 0 2px 15px rgba(10, 30, 60, 0.06);
}

.testimonial h2 {
    color: #1a4c8a;
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a4c8a;
}

.testimonial-content {
    font-size: 14px;
    line-height: 1.9;
    color: #1a2a4a;
}

.testimonial-content p {
    margin: 0;
}

.testimonial-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #a0bcd4, transparent);
    margin: 30px 0;
}

/* ===== CONTACTS PAGE ===== */
.page-contacts {
    padding: 10px 0 30px 0;
}

.contacts-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-detailed {
    background: #f8faff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
    height: fit-content;
}

.contact-info-detailed h2 {
    color: #1a4c8a;
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a4c8a;
}

.contact-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #e8eef5;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: bold;
    width: 120px;
    flex-shrink: 0;
    color: #1a2a4a;
}

.contact-value {
    color: #1a3a6a;
}

.contact-value a {
    color: #1a4c8a;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    background: #f8faff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #a0bcd4;
}

.contact-form-section h2 {
    color: #1a4c8a;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eef5;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #1a2a4a;
    font-size: 13px;
}

.contact-form label .required {
    color: #1a4c8a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #a0bcd4;
    border-radius: 5px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f5f8fc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a4c8a;
    box-shadow: 0 0 8px rgba(26, 76, 138, 0.12);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

/* Map Section */
.about-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8eef5;
}

.section-subtitle {
    color: #1a4c8a;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #a0bcd4;
}

/* Responsive Map Container */
.map-responsive {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 30, 60, 0.1);
    border: 1px solid #a0bcd4;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Map Info */
.map-info {
    text-align: center;
    padding: 20px 0 10px 0;
}

.map-info h3 {
    color: #1a4c8a;
    margin-bottom: 10px;
    font-size: 20px;
}

.map-info p {
    color: #1a2a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-map {
    background: #1a4c8a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #1a4c8a;
}

.btn-map:hover {
    background: #0b3a6a;
    border-color: #0b3a6a;
    color: #fff;
    text-decoration: none;
}

.btn-directions {
    background: #2a5a8a;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #2a5a8a;
}

.btn-directions:hover {
    background: #1a4a6a;
    border-color: #1a4a6a;
    color: #fff;
    text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 28px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: #1a4c8a;
    color: #fff;
    border: 1px solid #1a4c8a;
}

.btn-primary:hover {
    background: #0b3a6a;
    border-color: #0b3a6a;
    text-decoration: none;
}

.btn-secondary {
    background: #c0d4e8;
    color: #1a2a4a;
    border: 1px solid #a0bcd4;
}

.btn-secondary:hover {
    background: #a0bcd4;
    text-decoration: none;
}

.btn-success {
    background: #2a5a8a;
    color: #fff;
    border: 1px solid #2a5a8a;
}

.btn-success:hover {
    background: #1a4a6a;
    border-color: #1a4a6a;
}

/* ===== CAREERS PAGE ===== */
.page-careers {
    padding: 10px 0 30px 0;
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.job-position {
    margin-bottom: 35px;
    padding: 25px 30px;
    background: #f8faff;
    border: 1px solid #a0bcd4;
    border-radius: 8px;
    border-top: 4px solid #1a4c8a;
    transition: all 0.3s ease;
}

.job-position:hover {
    box-shadow: 0 2px 15px rgba(10, 30, 60, 0.06);
}

.job-position h2 {
    color: #1a4c8a;
    font-size: 18px;
    margin-bottom: 15px;
}

.job-ref {
    color: #6a8aaa;
    font-size: 14px;
    font-weight: normal;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    padding: 8px 0 8px 25px;
    border-bottom: 1px solid #e8eef5;
    line-height: 1.7;
    position: relative;
    font-size: 14px;
}

.job-requirements li:last-child {
    border-bottom: none;
}

.job-requirements li::before {
    content: "▸";
    color: #1a4c8a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.application-info {
    padding: 25px 30px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid #c0d4e8;
    line-height: 2;
    font-size: 14px;
}

.application-info p {
    margin: 5px 0;
}

.application-info .email-link {
    color: #1a4c8a;
    font-weight: bold;
}

.application-info .email-link:hover {
    text-decoration: underline;
}

.confidential-note {
    color: #6a8aaa;
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #a0bcd4;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer-main {
    background: #e0eaf5;
    border-top: 1px solid #a0bcd4;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.footer-nav a {
    color: #1a3a6a;
    text-decoration: none;
    padding: 0 12px;
    border-right: 1px solid #a0bcd4;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-nav a:last-child {
    border-right: none;
}

.footer-nav a:hover {
    color: #1a4c8a;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    color: #1a3a6a;
    font-size: 11px;
}

.footer-copyright strong {
    color: #2a5a8a;
}

/* ============================================================
   MISC UTILITY CLASSES
   ============================================================ */

.border {
    border: 2px solid #a0bcd4;
    border-radius: 4px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }

.hidden { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets */
@media (max-width: 991px) {
    .main-nav ul li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .module-row {
        gap: 20px;
    }
    
    .about-company-image {
        max-width: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
        margin-right: 10px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .home-boxes .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-box {
        min-height: auto;
    }
    
    .about-image {
        float: none;
        display: block;
        margin: 0 auto 10px auto;
    }
    
    .about-company-image {
        float: none;
        display: block;
        margin: 0 auto 15px auto;
        max-width: 100%;
    }
    
    .company-name {
        text-align: center;
    }
    
    .about-intro,
    .about-philosophy,
    .about-experience {
        padding: 15px;
    }
    
    .about-company {
        padding: 15px;
    }
    
    .services-intro {
        padding: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-list-detailed li strong {
        display: block;
        min-width: auto;
    }
    
    .benefit-section,
    .highlight-section {
        padding: 15px;
    }
    
    .module-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modules-grid-detailed {
        padding: 10px;
    }
    
    .module-item,
    .module-item-full {
        padding: 12px;
    }
    
    .module-icon {
        width: 40px;
        height: 40px;
    }
    
    .testimonial {
        padding: 15px 18px;
    }
    
    .testimonial h2 {
        font-size: 15px;
    }
    
    .contact-info-detailed {
        padding: 15px;
    }
    
    .contact-row {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .contact-label {
        width: 100%;
        margin-bottom: 3px;
    }
    
    .contact-form-section {
        padding: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .job-position {
        padding: 15px 18px;
    }
    
    .job-position h2 {
        font-size: 16px;
    }
    
    .job-ref {
        display: block;
        font-size: 12px;
        margin-top: 3px;
    }
    
    .application-info {
        padding: 15px 18px;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-nav a {
        border-right: none;
        padding: 5px 10px;
        border-bottom: 1px solid #a0bcd4;
    }
    
    .footer-nav a:last-child {
        border-bottom: none;
    }
    
    .page-title {
        font-size: 20px;
        padding-bottom: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
    
    .container {
        padding: 0 10px;
    }

    .banner-container {
        padding: 0 0px;
    }    
    
    .banner-padded-wrapper {
        padding: 0 0px;
    }

    .padded-banner {
	max-width: 100%;
	height: auto;
	border-radius: 0;
	border: 0px;
	box-shadow: 0 2px 10px rgba(10, 30, 60, 0.1);
    }

    .page-title {
        font-size: 18px;
    }
    
    .language-switcher a {
        padding: 2px 8px;
        font-size: 11px;
    }
    
    .module-item ul li,
    .module-item-full ul li {
        font-size: 12px;
    }
    
    .job-requirements li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .benefit-section p,
    .highlight-section p,
    .about-intro,
    .about-company-text,
    .about-philosophy,
    .about-experience {
        font-size: 13px;
    }

    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-map,
    .btn-directions {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .top-bar,
    .mobile-nav-toggle,
    .language-switcher,
    .footer-main {
        display: none !important;
    }
    
    .header-main {
        border-bottom: none;
    }
    
    .main-nav {
        display: none !important;
    }
    
    body {
        background: #fff;
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .page-title {
        border-bottom: 1px solid #000;
        color: #000;
    }
    
    .home-box,
    .service-item,
    .testimonial,
    .job-position,
    .module-item,
    .module-item-full {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    
    .benefit-section,
    .highlight-section {
        border-left: 2px solid #000 !important;
    }
    
    .about-intro,
    .about-philosophy,
    .about-experience,
    .services-intro,
    .service-item,
    .requirements-content > p {
        border-left: 2px solid #000 !important;
    }
    
    a {
        text-decoration: underline !important;
        color: #000 !important;
    }
    
    .btn {
        display: none !important;
    }
}
