@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&family=Roboto:wght@400;500;700&family=Noto+Sans+TC:wght@400;500;700&family=Outfit:wght@400;500;700&family=Poppins:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
}

#outer {
    width: 100%;
    margin: 0 auto;
}

#outerbot {
    width: 100%;
}

#main {
    width: 100%;
    clear: both;
}

#middle {
    width: 100%;
    padding-top: 100px; /* Space for fixed header */
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #000;
    z-index: 50;
    height: 100px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 77px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.desktop-nav a:hover {
    opacity: 0.8;
}

.desktop-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-right a {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.desktop-right a:hover {
    opacity: 0.8;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-en {
    height: 32px;
    width: 41.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

.lang-divider {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

.lang-icon {
    height: 22.63px;
    width: 22.62px;
    background-image: url('../static/img/vector.svg');
    background-size: 100% 100%;
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #333;
    z-index: 40;
    padding: 20px;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu nav a {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.mobile-menu nav a:hover {
    opacity: 0.8;
}

.mobile-language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #333;
    margin-top: 16px;
}

/* Footer Styles */
#footer {
    width: 100%;
    background-color: #3c3c3c;
    padding: 64px 20px 32px;
    clear: both;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 272px;
    height: auto;
    margin-bottom: 16px;
}

.footer-col p a {
    color: #fee087;
    text-decoration: underline;
}

.footer-col p a:hover {
    opacity: 0.85;
}

.footer-col p {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social span {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.social-icons a svg {
    display: block;
    flex-shrink: 0;
}

.footer-col h3 {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col address {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    font-style: normal;
}

.footer-col address p {
    margin-bottom: 12px;
}

.footer-copyright {
    border-top: 1px solid #666;
    padding-top: 16px;
    margin-top: 32px;
}

.footer-copyright p {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: right;
    margin: 0;
}

/* Common Component Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 68px 0;
}

.section-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #000;
    font-size: 44px;
    letter-spacing: -0.68px;
    line-height: 40px;
    margin-bottom: 8px;
}

.section-title-white {
    color: #fff;
}

.section-header {
    margin-bottom: 64px;
}

.section-header-center {
    text-align: center;
}

.section-title-img {
    max-width: 290px;
    width: 100%;
    height: auto;
}

.section-subtitle {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 932px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    position: relative;
    max-width: 1050px;
    width: 100%;
}

.hero-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    object-fit: fill;
}

.hero-text {
    position: relative;
    padding: 64px;
}

.hero-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 68px;
    letter-spacing: -1.36px;
    line-height: 66px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    width: 212px;
    height: 64px;
    background-image: url('../static/img/subtract.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary span {
    background: linear-gradient(111deg, rgba(254, 224, 135, 1) 0%, rgba(250, 161, 4, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    width: 100%;
    height: 440px;
    max-height: 440px;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 440px;
    object-fit: cover;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 440px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.page-hero-text-wrapper {
    position: relative;
    width: 55%;
    max-width: 55%;
    background-image: url('../static/img/rectangle-7.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.page-hero-text-bg {
    display: none;
}

.page-hero-text {
    position: relative;
    padding: 40px 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-text-wrapper::before {
    display: none;
}

.page-hero-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 58px;
    letter-spacing: -1.16px;
    line-height: 58px;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1.6;
}

/* Grid Layouts */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

.gap-12 {
    gap: 48px;
}

/* Text Styles */
.text-black {
    color: #000;
}

.text-white {
    color: #fff;
}

.font-racing {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
}

.font-noto {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
}

.font-outfit {
    font-family: 'Outfit', Helvetica, Arial, sans-serif;
}

.font-roboto {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

.font-poppins {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

/* Responsive Design */

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.range-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.range-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.range-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 8px;
}

.range-card-image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.range-card-body {
    flex: 1;
    padding: 8px 20px 16px;
}

.range-card-title {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.range-card-desc {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #3c3c3c;
    margin: 0;
}

.range-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0f4f9b;
    border-top: 2px solid #fee087;
    padding: 14px 20px;
}

.range-card-cta {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.range-card:hover .range-card-cta {
    text-decoration: underline;
}

.range-more {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin: 40px 0 0;
}

.range-more a {
    color: #fee087;
    font-weight: 600;
}

.why-work-link {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fee087;
    text-decoration: none;
    margin-top: 16px;
    display: inline-block;
}

.why-work-link:hover {
    text-decoration: underline;
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 24px;
}

.service-title {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    letter-spacing: -0.48px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
}

.service-description {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: normal;
}

/* Product Cards */
.products-section-bg {
    background-color: #3c3c3c;
}

.product-card-wrapper {
    display: flex;
    flex-direction: column;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.product-image-wrapper {
    background-color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-footer {
    background-color: #0452a0;
    border: 2px solid #fee087;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 60px;
}

.product-footer::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #0452a0;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 70% 100%, 0 100%);
}

.product-contact-link {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    transition: opacity 0.3s;
    z-index: 1;
}

.product-contact-link:hover {
    opacity: 0.8;
}

.product-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.product-name {
    padding: 14px 8px;
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: normal;
    text-align: center;
}

/* Trusted Logos */
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 83px;
}

/* Why Work With Us Sections */
.why-work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.why-work-section:nth-child(even) .why-work-image {
    order: 2;
}

.why-work-section:nth-child(even) .why-work-text {
    order: 1;
}

.why-work-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    order: 1;
    display: block;
}

.why-work-text {
    position: relative;
    background-color: #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100%;
    order: 2;
}

.why-work-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px;
}

.why-work-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 40px;
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.why-work-description {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 28px;
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    height: 612px;
    overflow: hidden;
    padding: 96px 0;
}

.contact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.contact-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 672px;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.contact-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 68px;
    text-align: center;
    letter-spacing: -1.36px;
    line-height: 66px;
}

.contact-description {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.36px;
    line-height: 28px;
}

/* Responsive adjustments for components */

/* About Page Styles */
.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #010101;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 28px;
    margin-bottom: 16px;
}

.about-subtitle {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #010101;
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.about-list {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 24px;
    padding-left: 24px;
}

.about-list li {
    margin-bottom: 12px;
}

/* Products List */
.products-list {
    list-style: none;
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #010101;
    font-size: 20px;
    letter-spacing: -0.48px;
    line-height: 1.6;
}

.products-list li {
    margin-bottom: 16px;
}

/* Why Choose Our Products - Products Page */
.why-choose-products-section {
    padding: 68px 0;
}

.why-choose-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-choose-products-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    order: 1;
}

.why-choose-products-content {
    order: 2;
}

.why-choose-products-content .section-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.why-choose-products-content .section-title-img {
    margin-bottom: 24px;
}

#products .page-hero-title {
    font-size: 42px;
    letter-spacing: -0.84px;
    line-height: 1.2;
}

#products .page-hero-subtitle {
    font-size: 16px;
    letter-spacing: -0.32px;
}


.why-choose-products-content .products-list {
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 1.6;
}

/* Product Feature Rows */
.product-feature-section {
    width: 80%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 80px 0 0;
}

.product-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.product-feature-row:nth-child(even) .product-feature-image-wrap {
    order: 2;
}

.product-feature-row:nth-child(even) .product-feature-text {
    order: 1;
}

.product-feature-image-wrap {
    background-color: #c6c6c6;
}

.product-feature-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: contain;
    display: block;
}

.product-feature-text {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3c3c3c;
    overflow: hidden;
}

.product-feature-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/adobe-express-file-5-1-3.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.product-feature-text .product-feature-content {
    position: relative;
    z-index: 1;
}

.product-feature-content {
    width: 100%;
    max-width: 620px;
    padding: 48px;
    text-align: center;
}

.product-feature-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 40px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-feature-description {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-feature-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    min-height: 50px;
    padding: 12px 26px;
    background-color: #0f4f9b;
    border: 2px solid #f4bd3f;
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.product-feature-link:hover {
    opacity: 0.9;
}

.product-feature-cta {
    margin: 0 auto;
    width: 150px;
    height: 44px;
}

.product-feature-cta span {
    font-size: 14px;
}

/* Dealer Cards */
.dealer-search {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.dealer-search-label {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.dealer-search-input {
    width: 100%;
    max-width: 480px;
    padding: 13px 16px;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
    background-color: #fff;
}

.dealer-search-input:focus {
    outline: 2px solid #0f4f9b;
    outline-offset: 1px;
    border-color: #0f4f9b;
}

.dealer-search-count {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #3c3c3c;
    min-height: 21px;
    margin: 0;
}

.dealer-no-results {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.dealer-region-pills {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.dealer-pill {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    border-radius: 999px;
    padding: 8px 20px;
    cursor: pointer;
}

.dealer-pill:hover {
    border-color: #0f4f9b;
}

.dealer-pill.active {
    background-color: #0f4f9b;
    border-color: #0f4f9b;
    color: #fff;
}

.dealer-group-title {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: #1a1a1a;
    margin: 40px 0 8px;
}

.dealer-group-note {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #3c3c3c;
    margin: 0 0 24px;
    max-width: 800px;
}

.dealer-group-note a {
    color: #0f4f9b;
    font-weight: 600;
}

#dealerGrid,
#dealerGridOverseas {
    margin-bottom: 8px;
}

.dealer-no-results a {
    color: #0f4f9b;
    font-weight: 600;
}

.dealer-card {
    width: 100%;
    background-image: url('../static/img/rectangle-31-11.png');
    background-size: cover;
    background-position: 50% 50%;
    background-color: #0f4f9b;
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dealer-card::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color 0.2s ease;
}

.dealer-card:hover {
    background-image: none;
    box-shadow: none;
    transform: translateY(-2px);
}

.dealer-card:hover::after {
    border-color: #f4bd3f;
}

.dealer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.dealer-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 32px;
    letter-spacing: -0.64px;
    line-height: 1.2;
    text-align: center;
}

.dealer-subtitle {
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 1.6;
}

.dealer-footer {
    margin-top: auto;
    min-height: 152px;
    display: flex;
    flex-direction: column;
}

.dealer-line {
    width: 100%;
    height: 1px;
    object-fit: cover;
    margin-bottom: 16px;
}

.dealer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.dealer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dealer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-size: 100% 100%;
}

.dealer-text {
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.32px;
}

.dealer-text a {
    color: #fff;
    text-decoration: underline;
}

.dealer-website {
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-decoration: underline;
    display: block;
    margin-top: auto;
}

/* Contact Page Layout */
.contact-page-section {
    padding: 64px 0 64px 0;
    background-color: #e7f3ff;
    margin-top: 0;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    min-height: 600px;
}

/* Left Side - Contact Information */
.contact-info-panel {
    position: relative;
    background-image: url('../static/img/rectangle-1.png');
    background-size: cover;
    background-position: center;
    padding: 64px 48px;
    display: flex;
    align-items: center;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-info-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-info-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 48px;
}

.contact-info-title-accent {
    color: #0452a0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-info-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(4, 82, 160, 0.8);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    background-color: #fff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.phone-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.email-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.location-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.clock-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

.whatsapp-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.contact-info-value a {
    color: inherit;
    text-decoration: underline;
}

.download-cta-section {
    padding-top: 0;
}

.download-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background-color: #0f4f9b;
    border-radius: 8px;
    padding: 32px 40px;
}

.download-cta-title {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    margin: 0 0 8px;
}

.download-cta-desc {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 640px;
}

.download-cta-desc a {
    color: #fee087;
    font-weight: 600;
}

.download-cta-button {
    flex-shrink: 0;
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
}

.download-cta-button:hover {
    opacity: 0.9;
}

.product-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
}

.download-cta-button-primary {
    background-color: #fee087;
    color: #1a1a1a;
}

.product-detail-image {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    object-fit: contain;
    max-height: 520px;
}

.product-features-section {
    background-color: #f5f7fa;
}

.product-range-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-range-card:hover {
    border-color: #0f4f9b;
    box-shadow: 0 4px 16px rgba(15, 79, 155, 0.12);
}

.product-range-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-range-name {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.product-range-tagline {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #3c3c3c;
    margin: 0;
    flex: 1;
}

.product-range-link {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0f4f9b;
}

.contact-info-details {
    flex: 1;
}

.contact-info-label {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #0452a0;
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.contact-info-value {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0;
}

.contact-social {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social-label {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0452a0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    width: 100%;
    background-color: #0452a0;
    /* Near-black border matching the edges of the info panel's photo so the two panels read as one block */
    border: 5px solid #16181c;
    /* 59px + 5px border matches the info panel's 64px top padding so both headings align */
    padding: 59px 43px 40px;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 38.4px;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    flex: 1;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.form-field {
    width: 100%;
    position: relative;
    height: 53px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-field-full {
    position: relative;
    width: 100%;
    height: 53px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 13px 16px;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 28px;
    background: transparent;
    border: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

/* Equal widths for paired fields inside a row */
.form-row .form-group {
    flex: 1;
    min-width: 0;
}

/* The message group absorbs any spare vertical space in the panel */
.form-group-grow {
    flex: 1;
}

.form-group-grow .form-field-textarea {
    flex: 1;
}

.form-label {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.form-error {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #ffd6d6;
}

.form-error:empty {
    display: none;
}

.form-field-textarea {
    height: auto;
    min-height: 140px;
}

.form-textarea {
    position: static;
    resize: vertical;
    min-height: 140px;
}

.form-alert {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    border-radius: 8px;
}

.form-alert-success {
    background-color: #fff;
    color: #1a1a1a;
    font-weight: 500;
}

.form-alert-error {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid #ffd6d6;
    color: #ffd6d6;
}

.form-alert-error ul {
    margin: 0;
    padding-left: 18px;
}

.validation-summary-valid {
    display: none;
}

.form-checkbox-row {
    display: flex;
    width: 100%;
    gap: 17px;
    align-items: flex-start;
}

.form-checkbox-row .form-checkbox,
.form-checkbox-row input[type="checkbox"] {
    align-self: center;
    flex-shrink: 0;
}

.form-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 4px;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    margin: 0;
    line-height: 0;
    vertical-align: middle;
}

.form-checkbox input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.form-checkbox-label {
    flex: 1;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
    cursor: pointer;
}

.form-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: center;
    margin-top: auto;
}

.form-terms {
    width: 100%;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5;
    margin: 0;
}

.form-terms a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.form-terms a:hover {
    opacity: 0.9;
}

.form-submit {
    width: 100%;
    height: 52px;
    background-color: #fee087;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    transition: opacity 0.3s;
}

.form-submit:hover {
    opacity: 0.9;
}

/* Responsive adjustments for new components */

/* Legal Content Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 0;
}

.legal-content h2 {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #000;
    font-size: 36px;
    letter-spacing: -0.72px;
    line-height: 1.2;
    margin-top: 48px;
    margin-bottom: 24px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #000;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content em {
    font-style: italic;
    color: #666;
}

/* About Us Page - Our Story, Mission, Promise */
.about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-two-col-reverse .about-mission-content {
    order: 1;
}

.about-two-col-reverse .about-mission-image {
    order: 0;
}

.about-story-image,
.about-mission-image,
.about-promise-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.about-story-content,
.about-mission-content,
.about-promise-content {
    padding: 0;
}

.about-subheading {
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #010101;
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.about-list-bullets {
    list-style: disc;
    padding-left: 24px;
}

.about-list-bullets li {
    margin-bottom: 12px;
}

/* About Us - Advanced Technology Section */
.about-tech-section {
    background-color: #3c3c3c;
    padding: 64px 0;
}

.about-tech-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    padding: 0 20px;
}

.about-tech-tab {
    padding: 20px 24px;
    background-color: rgba(4, 82, 160, 0.3);
    color: #a7a7a7;
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-style: italic;
    letter-spacing: -0.72px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s, color 0.2s;
}

.about-tech-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.about-tech-tab-active {
    background-color: #0452a0;
    color: #fff;
}

.about-tech-panels {
    position: relative;
}

.about-tech-section .about-two-col {
    align-items: start;
}

.about-tech-panel {
    display: none;
}

.about-tech-panel-active {
    display: block;
}

.about-tech-content-wrapper {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 32px;
}

.about-tech-image-wrapper {
    border: 1px solid #fff;
    border-radius: 8px;
    overflow: hidden;
}

.about-tech-content {
    padding: 0;
}

.about-tech-title {
    font-family: 'Racing Sans One', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: italic;
    color: #fff;
    font-size: 36px;
    letter-spacing: -0.72px;
    margin-bottom: 24px;
}

.about-text-white {
    color: #fff;
}

.about-tech-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Media Gallery */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.media-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.media-gallery-caption {
    padding: 16px;
    font-family: 'Noto Sans TC', Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .service-title {
        min-height: 52px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
}