/*
Theme Name: Layercloud Theme
Theme URI: 
Author: Layercloud
Author URI: 
Description: A custom WordPress theme for Layercloud with responsive design
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: layercloud
*/

/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #64748b;
    --color-accent: #06b6d4;

    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Container */
    --container-max-width: 1280px;
    --container-padding: 1rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;

    /* Header */
    --header-height: 80px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.main-content {
    flex: 1;
    padding-top: var(--header-height);
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    background: linear-gradient(90deg, #00FFD5 -795.69%, #00DCD7 -434.81%, #009BDA 283.38%, #0072DC 807%, #0063DD 1077.05%);
    z-index: var(--z-fixed);
    transition: box-shadow var(--transition-base);
}

.site-header .container {
    max-width: 1200px;
    height: 100%;
}

.site-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-width: 200px;
    height: auto;
}

.site-logo a {
    display: flex;
    align-items: center;
}

/* Main Navigation */
.main-nav {
    display: none;
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav li {
    list-style: none;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: opacity var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width var(--transition-base);
}

.main-nav a:hover {
    color: #FFFFFF;
    opacity: 0.85;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta.btn-cta {
    display: none;
    width: 168px;
    height: 38px;
    padding: 6px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 60px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    background: #C0D72F;
    border: 2px solid #FFFFFF;
    border-radius: 0;
    transition: all var(--transition-fast);
}

.header-cta.btn-cta:hover {
    background: #a8bc27;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: #C0D72F;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Header: reduced height, logo centered, hamburger full-height on right */
@media (max-width: 1023px) {
    .site-header {
        height: 56px;
    }

    .header-inner {
        position: relative;
        justify-content: center;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: calc(-1 * var(--container-padding));
        top: 0;
        height: 100%;
        width: 56px;
        border-radius: 0;
        border: 2px solid #FFFFFF;
        transform: none;
    }

    .site-logo img {
        max-width: 160px;
    }

    .main-content {
        padding-top: 56px;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0072DC 0%, #0063DD 100%);
    padding: var(--spacing-xl);
    z-index: var(--z-fixed);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav li {
    list-style: none;
}

.mobile-nav a {
    display: block;
    font-size: var(--text-lg);
    font-weight: 500;
    color: #FFFFFF;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #FDB815;
}

.mobile-nav a.btn-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 12px 24px;
    background: #C0D72F;
    color: #FFFFFF;
    border-radius: var(--radius-md);
    border: 2px solid #FFFFFF;
    text-align: center;
}

.mobile-nav a.btn-cta:hover {
    background: #a8bc27;
    color: #FFFFFF;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
    background: #003765;
    color: #c8d6e5;
    padding: 0;
}

.site-footer .container {
    max-width: 1200px;
}

/* Footer Logo Area */
.footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0 32px;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 12px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3em;
    margin: 0;
}

/* Footer Info Row */
.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 0 32px;
}

.footer-contact p {
    color: #c8d6e5;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact a {
    color: #c8d6e5;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Footer Policy Links */
.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-policy-links a {
    color: #c8d6e5;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #ffffff;
}

.footer-divider {
    color: #c8d6e5;
    font-size: 14px;
}

/* Footer Bottom / Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #8899aa;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-info-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-policy-links {
        align-self: center;
        justify-content: center;
    }

    .footer-logo-area {
        padding: 36px 0 24px;
    }

    .footer-logo-img {
        max-width: 160px;
    }

    .footer-brand-name {
        font-size: 18px;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
}

.btn-secondary:hover {
    background: var(--color-gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ========================================
   Hero Banner Section
   ======================================== */
.hero-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 50px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.banner-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.banner-small-text {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.banner-small-text.top {
    margin-bottom: 16px;
}

.banner-small-text.bottom {
    margin-bottom: 32px;
}

.banner-main-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner-btn.btn-learn-more {
    background-color: #C0D72F;
    /* Greenish yellow color that matches the design */
    color: #000000;
}

.banner-btn.btn-learn-more:hover {
    background-color: #a8bc27;
}

/* Responsive Banner Overlay */
@media (max-width: 768px) {
    .banner-main-text {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .banner-small-text {
        font-size: 13px;
    }

    .banner-small-text.top {
        margin-bottom: 10px;
    }

    .banner-small-text.bottom {
        margin-bottom: 20px;
    }

    .banner-btn.btn-learn-more {
        width: 120px;
        height: 34px;
        padding: 4px 16px;
        font-size: 14px;
    }

    .hero-banner {
        margin-top: 0;
    }
}

.hero-banner picture {
    display: block;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    display: block;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    padding: 120px 0;
    min-height: 400px;
    background-color: var(--color-white);
    background-image: var(--stat-bg-desktop, none);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .stats-section {
        background-image: var(--stat-bg-mobile, var(--stat-bg-desktop, none));
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Reduced gap for mobile */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    justify-items: center;
}

/* Stats Section - Tablet and Desktop */
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        justify-content: center;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stat-circle-progress {
    transition: stroke-dashoffset 1s ease-in-out;
}

.stat-text-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-number.green {
    color: #B4CC23;
}

.stat-sub-text {
    font-size: 15px;
    font-weight: 500;
    color: #2680C2;
    margin-top: 4px;
    line-height: 1.3;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-top: 10px;
}

/* Mobile Optimizations for Stats */
@media (max-width: 767px) {
    .stat-circle {
        width: 140px;
        height: 140px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-sub-text {
        font-size: 12px;
        margin-top: 2px;
    }

    .stat-label {
        font-size: 14px;
        margin-top: 6px;
    }
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #BCDDF0 100%);
    padding: 80px 0;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Hide mobile button wrapper by default (shown on mobile via media query below) */
.team-btn-wrapper {
    display: none;
}

/* Mobile: text first, image second, button third */
@media (max-width: 1023px) {
    .team-text {
        order: 1;
    }

    .team-image-wrapper {
        order: 2;
        margin-left: auto;
        margin-right: auto;
    }

    .team-image-wrapper img {
        display: block;
        margin: 0 auto;
    }

    .team-btn-wrapper {
        order: 3;
        display: flex;
        justify-content: center;
    }

    .team-text .btn-learn-more.team-btn-desktop {
        display: none;
    }

    .team-description {
        margin-bottom: 0;
    }
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
}

/* Hide old geometric shapes */
.geometric-shape {
    display: none;
}

/* SVG for figure-8 mask */
.team-image-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* White stripe on the right of image */
.team-white-stripe {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 20px;
    height: 80%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    z-index: 3;
}

.team-text {
    text-align: center;
}

.team-title {
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #2680C2;
    /* Matches the solid blue color in the new screenshot */
    margin-bottom: 24px;
}

.team-subtitle {
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #B4CC23;
    /* Same green used in stats section */
    margin-bottom: 24px;
}

.team-description {
    max-width: 450px;
    color: #333333;
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Specific styling for Team section button */
.team-section .btn-learn-more {
    background: #C0D72F;
    /* Green-yellowish background */
    color: #000;
}

.team-section .btn-learn-more:hover {
    background: #B4CC23;
}

/* Learn More Button */
.btn-learn-more {
    display: flex;
    width: 168px;
    height: 38px;
    padding: 6px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FDB815;
    border-radius: 0;
    color: #000;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: background var(--transition-fast);
}

.btn-learn-more:hover {
    background: #e5a613;
    color: #000;
}

/* Team Section - Desktop */
@media (min-width: 1024px) {
    .team-content {
        flex-direction: row;
        gap: 80px;
        align-items: center;
        justify-content: center;
    }

    .team-image-wrapper {
        flex: 0 0 500px;
        max-width: 50%;
    }

    .team-text {
        flex: 0 1 auto;
        text-align: left;
        max-width: 450px;
    }

    .team-title {
        font-size: 36px;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: url('assets/img/bg001.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 60px;
}

.services-section-title {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, #00FFD5 -795.69%, #00DCD7 -434.81%, #009BDA 27.21%, #0072DC 807%, #0063DD 1077.05%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon img {
    max-width: 120px;
    height: auto;
}

.service-card-text {
    flex: 1;
    min-width: 0;
}

.service-card .service-card-title {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2680C2;
    margin-bottom: 12px;
}

.service-card-desc {
    color: #555;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
}

.services-cta {
    display: flex;
    justify-content: center;
}

/* Specific styling for Services section button */
.services-section .btn-learn-more {
    background: #C0D72F;
    color: #000;
}

.services-section .btn-learn-more:hover {
    background: #B4CC23;
}

/* Services Section - Tablet & Desktop */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .services-section-title {
        font-size: 36px;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon img {
        max-width: 180px;
    }

    .service-card .service-card-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .service-card-desc {
        max-width: 240px;
        text-align: center;
        margin: 0 auto;
    }
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    background: var(--0002, #2A81C3);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.partners-bg-svg {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.partners-bg-svg img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

.partners-logo-combined {
    text-align: center;
}

.partners-logo-combined img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.partners-title {
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-item img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Partners Section - Tablet */
@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .partner-item img {
        max-width: 150px;
        max-height: 70px;
    }
}

/* Partners Section - Desktop */
@media (min-width: 1024px) {
    .partners-title {
        font-size: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .partner-item img {
        max-width: 150px;
        max-height: 65px;
    }
}

/* ========================================
   Page Sections
   ======================================== */
.page-section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */
@media (min-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }

    h1 {
        font-size: var(--text-5xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   Responsive Design - Desktop
   ======================================== */
@media (min-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }

    /* Header */
    .mobile-menu-toggle {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .header-cta.btn-cta {
        display: inline-flex;
    }

    .mobile-nav {
        display: none !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

/* ========================================
   Utilities
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   Services Banner Section
   ======================================== */
/* Mobile: push content below fixed header */
.page-template-template-services .main-content {
    padding-top: 56px;
}

/* Desktop: full-bleed banner under header */
@media (min-width: 768px) {
    .page-template-template-services .main-content {
        padding-top: 0 !important;
    }
}

.services-banner {
    width: 100%;
    padding: 0;
    margin: 0;
}

.services-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.services-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .services-banner-container {
        min-height: 420px;
    }
}

.services-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.services-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.services-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.services-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.services-banner-description {
    color: #FFF;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0 0;
    max-width: 600px;
}

/* Services Banner - Desktop */
@media (min-width: 768px) {
    .services-banner-title {
        font-size: 48px;
    }

    .services-banner-subtitle {
        font-size: 36px;
    }

    .services-banner-description {
        font-size: 16px;
    }
}

/* ========================================
   Cloud Integration Section
   ======================================== */
.cloud-integration-section {
    padding: 60px 0;
    background: var(--color-white);
}

.cloud-integration-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cloud-integration-text {
    order: 1;
    text-align: center;
    max-width: 500px;
}

.cloud-integration-image {
    order: 2;
    flex-shrink: 0;
}

.cloud-integration-image img {
    width: 268px;
    height: 273.733px;
    aspect-ratio: 187 / 191;
    display: block;
    border-radius: 40px;
    object-fit: cover;
}

.cloud-integration-cta {
    order: 3;
    display: flex;
    justify-content: center;
}

.cloud-integration-title {
    color: #2A81C3;
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.cloud-integration-description {
    width: 100%;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}

.cloud-integration-section .btn-learn-more {
    display: flex;
    width: auto;
    min-width: 76px;
    height: 24px;
    padding: 2.17px 17.36px;
    justify-content: center;
    align-items: center;
    gap: 3.617px;
    flex-shrink: 0;
    white-space: nowrap;
    background: #B4C537;
    color: #000;
    border: none;
    border-radius: 0;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cloud-integration-section .btn-learn-more:hover {
    background: #B4C537;
    color: #000;
    border-color: #B4C537;
}

/* Cloud Integration - Desktop */
@media (min-width: 1024px) {
    .cloud-integration-section {
        padding: 260px 0;
    }

    .cloud-integration-content {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 0 80px;
        align-items: start;
        max-width: 960px;
        margin: 0 auto;
    }

    .cloud-integration-image {
        grid-row: 1 / 3;
        grid-column: 1;
        order: unset;
    }

    .cloud-integration-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: unset;
        border-radius: 0;
    }

    .cloud-integration-text {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        order: unset;
    }

    .cloud-integration-cta {
        grid-column: 2;
        grid-row: 2;
        justify-content: flex-start;
        order: unset;
    }

    .cloud-integration-title {
        font-family: "Noto Sans TC", sans-serif;
        font-size: 32px;
        text-align: left;
    }

    .cloud-integration-description {
        color: #555;
        font-family: "Noto Sans TC", sans-serif;
        font-size: 15px;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .cloud-integration-section .btn-learn-more {
        width: 168px;
        height: 38px;
        padding: 6px 48px;
        gap: 10px;
        font-family: "Noto Sans TC", sans-serif;
        font-size: 16px;
        background: #B4C537;
        color: #000;
        border: none;
    }
}

/* ========================================
   Service Advantages Section
   ======================================== */
.service-advantages-section {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(181, 233, 251, 0.4) 0%, rgba(42, 129, 195, 0.4) 100%);
}

.service-advantages-section .container {
    text-align: center;
}

.service-advantages-title {
    color: var(--0002, #2A81C3);
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 32px;
}

.service-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.advantage-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 4px;
}

.advantage-label {
    color: var(--0007, #00264A);
    text-align: center;
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.advantage-divider {
    width: 100%;
    max-width: 140px;
    height: 1px;
    background: #2A81C3;
    border: none;
    margin: 4px auto;
}

.advantage-description {
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    max-width: 160px;
    margin: 0 auto;
    text-align: center;
}

/* Service Advantages - Desktop */
@media (min-width: 768px) {
    .service-advantages-section {
        padding: 80px 0;
    }

    .service-advantages-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .service-advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }

    .advantage-item {
        gap: 12px;
    }

    .advantage-item img {
        width: 100px;
        height: 100px;
        margin-bottom: 8px;
    }

    .advantage-label {
        font-size: 24px;
        font-weight: 500;
    }

    .advantage-divider {
        width: 169px;
        margin: 8px auto;
    }

    .advantage-description {
        font-size: 13px;
        line-height: 1.7;
        max-width: 180px;
    }
}

/* ========================================
   Related Services Section
   ======================================== */
.related-services-section {
    padding: 40px 0;
    background: var(--color-white);
}

.related-services-section .container {
    text-align: center;
}

.related-services-title {
    color: var(--0002, #2A81C3);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-icon {
    margin-bottom: 8px;
}

.service-card-icon img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 24px;
}

.service-card-title {
    align-self: stretch;
    color: #0072DC;
    text-align: center;
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.service-card-description {
    align-self: stretch;
    color: #000;
    font-family: Inter, "Noto Sans TC", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}

.related-services-cta {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.related-services-cta .btn-learn-more {
    display: flex;
    width: auto;
    min-width: 76px;
    height: 24px;
    padding: 2.17px 17.36px;
    justify-content: center;
    align-items: center;
    gap: 3.617px;
    white-space: nowrap;
    background: #B4C537;
    color: #000;
    border-radius: 0;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.related-services-cta .btn-learn-more:hover {
    background: #9aab2a;
    color: #000;
}

/* Related Services - Desktop */
@media (min-width: 768px) {
    .related-services-section {
        padding: 80px 0;
    }

    .related-services-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .related-services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
        margin: 0 auto 60px;
    }

    .service-card-icon {
        margin-bottom: 24px;
    }

    .service-card-icon img {
        width: 180px;
        height: 180px;
        object-fit: contain;
        border-radius: 0;
    }

    .service-card-title {
        font-family: "Noto Sans TC", sans-serif;
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 16px;
    }

    .service-card-description {
        font-family: "Noto Sans TC", sans-serif;
        font-size: 16px;
        line-height: 28px;
    }

    .related-services-cta {
        margin-top: 40px;
    }

    .related-services-cta .btn-learn-more {
        width: 168px;
        height: 38px;
        padding: 6px 48px;
        gap: 10px;
        font-family: "Noto Sans TC", sans-serif;
        font-size: 16px;
    }
}

/* ========================================
   Services CTA Section (立即諮詢)
   ======================================== */
.services-cta-section {
    width: 100%;
    min-height: 500px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .services-cta-section {
        background-image: url('assets/img/Group 439.png') !important;
    }
}

.services-cta-overlay {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.services-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 60px 20px;
}

.services-cta-title {
    color: var(--0002, #2A81C3);
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.services-cta-subtitle {
    color: var(--0007, #00264A);
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.8;
    max-width: 520px;
    margin: 0;
}

.btn-contact-us {
    display: flex;
    width: 168px;
    height: 38px;
    padding: 6px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid #FFF;
    background: #FFF;
    color: var(--0001, #B4C537);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.88px;
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-contact-us:hover {
    background: transparent;
    color: #FFF;
    border-color: #FFF;
}

/* Services CTA - Desktop */
@media (min-width: 768px) {
    .services-cta-title {
        font-size: 32px;
    }
}

/* ========================================
   Solutions Banner Section
   ======================================== */
/* Remove main-content padding for solutions page */
.page-template-template-solutions .main-content {
    padding-top: 0;
}

.solutions-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.solutions-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.solutions-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.solutions-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-banner-content {
    text-align: center;
}

.solutions-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
}

.solutions-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* Solutions Banner - Desktop */
@media (min-width: 768px) {
    .solutions-banner-title {
        font-size: 48px;
    }

    .solutions-banner-subtitle {
        font-size: 16px;
    }
}

/* ========================================
   Why Choose Our Solution Section
   ======================================== */
.why-choose-section {
    background: linear-gradient(180deg, rgba(1, 178, 218, 0.08) 0%, rgba(1, 178, 218, 0.02) 100%);
    padding: 80px 0;
}

.why-choose-title {
    color: #01B2DA;
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    padding: 12px 24px;
    text-align: center;
}

.pain-points-header {
    background: #E57373;
}

.solutions-header {
    background: #6BBF59;
}

.card-header-text {
    color: #FFFFFF;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.card-content {
    padding: 30px 24px;
}

.card-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.card-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.pain-number {
    background: #E57373;
}

.solution-number {
    background: #6BBF59;
}

.item-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.pain-title {
    color: #E57373;
}

.solution-title {
    color: #6BBF59;
}

.item-description {
    color: #666666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding-left: 34px;
}

/* Why Choose Section - Tablet */
@media (min-width: 768px) {
    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .card-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .card-content {
        padding: 40px 30px;
    }
}

/* Why Choose Section - Desktop */
@media (min-width: 1024px) {
    .why-choose-section {
        padding: 100px 0;
    }

    .why-choose-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .card-header {
        padding: 16px 30px;
    }

    .card-header-text {
        font-size: 20px;
    }

    .item-title {
        font-size: 18px;
    }

    .item-description {
        font-size: 14px;
    }
}

/* ========================================
   System Architecture Section
   ======================================== */
.system-architecture-section {
    background: linear-gradient(180deg, rgba(1, 178, 218, 0.08) 0%, rgba(1, 178, 218, 0.02) 100%);
    padding: 80px 0;
}

.system-architecture-section .container {
    text-align: center;
}

.system-architecture-title {
    font-family: Inter, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, #00FFD5 -795.69%, #00DCD7 -434.81%, #009BDA 27.21%, #0072DC 807%, #0063DD 1077.05%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.system-architecture-image {
    max-width: 100%;
    margin: 0 auto;
}

.system-architecture-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

/* System Architecture - Desktop */
@media (min-width: 768px) {
    .system-architecture-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .system-architecture-section {
        padding: 100px 0;
    }

    .system-architecture-title {
        margin-bottom: 60px;
    }
}

/* ========================================
   Related Case Studies Section
   ======================================== */
.related-cases-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.related-cases-section .container {
    text-align: center;
}

.related-cases-title {
    color: #0097DA;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}

.related-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.case-image {
    width: 100%;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.case-btn {
    display: flex;
    width: 140px;
    height: 31px;
    padding: 5px 37px;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background: #0097DA;
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    transition: background 0.3s ease;
}

.case-btn:hover {
    background: #007bb5;
    color: #FFF;
}

.no-cases-message {
    padding: 60px 20px;
}

.no-cases-message p {
    color: #666666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

/* Related Case Studies - Tablet */
@media (min-width: 768px) {
    .related-cases-title {
        font-size: 32px;
    }

    .related-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .case-image img {
        height: 180px;
    }
}

/* Related Case Studies - Desktop */
@media (min-width: 1024px) {
    .related-cases-section {
        padding: 100px 0;
    }

    .related-cases-title {
        margin-bottom: 60px;
    }

    .case-image img {
        height: 220px;
    }
}

/* ========================================
   FAQ Banner Section
   ======================================== */
/* Remove main-content padding for FAQ page */
.page-template-template-faq .main-content {
    padding-top: 0;
}

.faq-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.faq-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.faq-banner-img {
    width: 100%;
    height: auto;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.faq-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 60px 24px 0;
    box-sizing: border-box;
}

.faq-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.faq-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* FAQ Search Box */
.faq-search-box {
    margin-top: 24px;
    width: 100%;
}

.faq-search-form {
    display: flex;
    align-items: center;
    max-width: 277px;
    height: 36px;
    margin: 0 auto;
    background: #FFF;
    border: 1px solid #999;
    border-radius: 10px;
    padding: 0 8px 0 14px;
    gap: 10px;
    box-sizing: border-box;
}

.faq-search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0;
    color: #333;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;
}

.faq-search-input::placeholder {
    color: #999;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.faq-search-btn {
    display: flex;
    width: 80px;
    height: 18px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: #2A81C3;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    color: #FFF;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.faq-search-btn:hover {
    background: #1f6da6;
}

/* FAQ Banner - Desktop */
@media (min-width: 768px) {
    .faq-banner-img {
        min-height: auto;
    }

    .faq-banner-title {
        font-size: 48px;
    }

    .faq-banner-subtitle {
        font-size: 20px;
    }

    .faq-banner-content {
        padding: 0;
    }

    .faq-search-form {
        display: flex;
        width: 500px;
        height: 50px;
        max-width: none;
        border: 1px solid #999;
        border-radius: 10px;
        padding: 9px 12px;
        align-items: center;
        gap: 10px;
        box-shadow: none;
        box-sizing: border-box;
    }

    .faq-search-input {
        width: auto;
        height: 100%;
        font-size: 16px;
    }

    .faq-search-input::placeholder {
        font-size: 16px;
    }

    .faq-search-btn {
        width: 87px;
        height: 31px;
        padding: 6px 48px;
        border-radius: 60px;
        font-size: 14px;
        background: #2A81C3;
    }
}

/* ========================================
   FAQ Accordion Section
   ======================================== */
.faq-accordion-section {
    padding: 60px 0 80px;
    background: #FFF;
    overflow: hidden;
}

.faq-accordion-list {
    max-width: 902px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    width: 100%;
    background: #FFF;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    min-height: 67px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #FAFAFA;
}

.faq-q-label {
    color: #333;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}

.faq-q-text {
    color: #333;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

.faq-toggle-icon {
    color: #999;
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    width: 24px;
    text-align: center;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 24px;
    background: #FFF;
}

.faq-a-label {
    color: #666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-right: 8px;
}

.faq-a-text {
    color: #666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

/* FAQ Accordion - Desktop */
@media (min-width: 768px) {
    .faq-accordion-section {
        padding: 80px 0 80px;
    }

    .faq-item {
        max-width: 902px;
    }

    .faq-question {
        min-height: 67px;
    }
}

/* FAQ Accordion - Mobile */
@media (max-width: 767px) {
    .faq-accordion-list {
        padding: 0 16px;
    }

    .faq-q-label,
    .faq-q-text {
        font-size: 16px;
    }

    .faq-a-label,
    .faq-a-text {
        font-size: 14px;
    }
}

/* ========================================
   News Banner Section
   ======================================== */
/* Remove main-content padding for News page */
.page-template-template-news .main-content {
    padding-top: 0;
}

.news-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.news-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.news-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.news-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.news-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* News Banner - Desktop */
@media (min-width: 768px) {
    .news-banner-title {
        font-size: 48px;
    }

    .news-banner-subtitle {
        font-size: 20px;
    }
}

/* ========================================
   News Category Filter Section
   ======================================== */
.news-category-section {
    padding: 40px 0;
    background: #FFFFFF;
}

.news-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.category-btn {
    display: inline-flex;
    min-width: 120px;
    height: 40px;
    padding: 8px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid #0097DA;
    background: #FFFFFF;
    color: #0097DA;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    background: #0097DA;
    color: #FFF;
}

.category-btn.active {
    background: #0097DA;
    color: #FFF;
}

/* Category Filter - Mobile */
@media (max-width: 767px) {
    .news-category-filter {
        gap: 10px;
    }

    .category-btn {
        min-width: 80px;
        height: 36px;
        padding: 6px 20px;
        font-size: 14px;
    }
}

/* ========================================
   News Cards Section
   ======================================== */
.news-cards-section {
    padding: 40px 0 80px;
    background: #F5F5F5;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    width: 100%;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #333;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #0097DA;
}

.news-card-excerpt {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 查看更多按鈕 - 根據用戶規格 */
.news-card-btn {
    display: flex;
    width: 110.923px;
    height: 24.769px;
    padding: 4.308px 29.615px;
    justify-content: center;
    align-items: center;
    gap: 5.385px;
    flex-shrink: 0;
    background: #0097DA;
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.news-card-btn:hover {
    background: #007bb5;
    color: #FFF;
}

/* News Cards - Tablet */
@media (min-width: 768px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card-image img {
        height: 180px;
    }
}

/* News Cards - Desktop */
@media (min-width: 1024px) {
    .news-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .news-card-image img {
        height: 200px;
    }
}

/* ========================================
   News Pagination
   ======================================== */
.news-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.news-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.news-pagination li {
    margin: 0;
}

.news-pagination a,
.news-pagination span {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #DDD;
    background: #FFF;
    color: #333;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    background: #0097DA;
    border-color: #0097DA;
    color: #FFF;
}

.news-pagination .current {
    background: #0097DA;
    border-color: #0097DA;
    color: #FFF;
}

.news-pagination .dots {
    border: none;
    background: transparent;
}

/* News No Posts */
.news-no-posts {
    text-align: center;
    padding: 60px 20px;
}

.news-no-posts p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: #666;
}

/* ========================================
   Privacy Policy Page Styles
   ======================================== */
/* Remove main-content padding for Privacy page */
.page-template-template-privacy .main-content {
    padding-top: 0;
}

/* Privacy Banner */
.privacy-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.privacy-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.privacy-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.privacy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.privacy-banner-title {
    color: #FDB815;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.privacy-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* Privacy Banner - Desktop */
@media (min-width: 768px) {
    .privacy-banner-title {
        font-size: 48px;
    }

    .privacy-banner-subtitle {
        font-size: 20px;
    }
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.privacy-container {
    display: flex;
    max-width: 960px;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}

.privacy-intro {
    margin-bottom: 30px;
}

.privacy-intro p {
    margin: 0;
}

.privacy-section {
    margin-bottom: 20px;
}

.privacy-section-title {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    margin: 0 0 10px 0;
}

.privacy-section>p {
    margin: 0 0 10px 0;
}

.privacy-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.privacy-list li {
    padding-left: 10px;
    list-style-type: disc;
}

.privacy-list li strong {
    font-weight: 700;
}

.privacy-contact-info {
    margin-top: 10px;
}

.privacy-contact-info p {
    margin: 0;
}

.privacy-email-link {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.privacy-email-link:hover {
    color: #0072DC;
}

.privacy-note {
    margin-top: 40px;
    padding: 20px;
    background: #F5F5F5;
    border-left: 4px solid #FDB815;
}

.privacy-note p {
    margin: 0;
    font-style: italic;
    color: #666;
}

/* Privacy Content - Desktop */
@media (min-width: 768px) {
    .privacy-container {
        font-size: 22px;
        line-height: 60px;
        padding: 0 40px;
    }

    .privacy-section-title {
        font-size: 22px;
    }

    .privacy-email-link {
        font-size: 22px;
    }
}

/* Privacy Content - Mobile */
@media (max-width: 767px) {
    .privacy-content-section {
        padding: 40px 0;
    }

    .privacy-container {
        font-size: 16px;
        line-height: 36px;
    }

    .privacy-section-title {
        font-size: 18px;
        line-height: 40px;
    }

    .privacy-email-link {
        font-size: 16px;
        line-height: 36px;
    }
}

/* ========================================
   Case Studies Page Styles
   ======================================== */
/* Remove main-content padding for Case Studies page */
.page-template-template-case-studies .main-content {
    padding-top: 0;
}

/* Case Banner */
.case-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.case-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.case-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.case-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.case-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.case-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Case Banner - Desktop */
@media (min-width: 768px) {
    .case-banner-title {
        font-size: 48px;
    }

    .case-banner-subtitle {
        font-size: 20px;
    }
}

/* Case Item Section */
.case-item-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.case-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.case-item-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-content {
    text-align: center;
}

.case-item-title {
    color: #0097DA;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.case-item-subtitle {
    color: #666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

/* Stats Grid */
.case-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.case-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    padding: 16px 24px;
    border: 1px solid #DDD;
    border-radius: 4px;
    background: #FFFFFF;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #0097DA;
}

.case-stat-label {
    color: #666;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4px;
}

.case-stat-value {
    color: #333;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* Case Item Section - Tablet */
@media (min-width: 768px) {
    .case-item-section {
        padding: 80px 0 100px;
    }

    .case-item-title {
        font-size: 28px;
    }

    .case-item-subtitle {
        font-size: 18px;
    }

    .case-stats-grid {
        flex-direction: row;
        gap: 30px;
    }
}

/* Case Item Section - Desktop */
@media (min-width: 1024px) {
    .case-item-section {
        padding: 80px 0 120px;
    }

    .case-image-wrapper {
        max-width: 1100px;
        margin: 0 auto 50px;
    }

    .case-item-title {
        font-size: 32px;
    }

    .case-stat-card {
        width: 180px;
        height: 90px;
    }

    .case-stat-value {
        font-size: 28px;
    }
}

/* ========================================
   Case Detail Section (Content Blocks)
   ======================================== */
.case-detail-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.case-detail-block {
    max-width: 960px;
    margin: 0 auto 50px;
}

.case-detail-block:last-child {
    margin-bottom: 0;
}

.case-detail-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.case-detail-title--blue {
    color: #0097DA;
}

.case-detail-title--orange {
    color: #E67E22;
}

.case-detail-intro {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0 0 16px 0;
}

.case-detail-list {
    list-style: disc;
    padding-left: 24px;
    margin: 0 0 16px 0;
}

.case-detail-list li {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #333;
    margin-bottom: 8px;
    list-style-type: disc;
}

.case-detail-list li strong {
    color: #0097DA;
    font-weight: 700;
}

.case-detail-conclusion {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 20px 0 0 0;
}

/* Case Detail Section - Desktop */
@media (min-width: 768px) {
    .case-detail-section {
        padding: 80px 0 100px;
    }

    .case-detail-title {
        font-size: 22px;
    }

    .case-detail-intro,
    .case-detail-list li,
    .case-detail-conclusion {
        font-size: 18px;
    }
}

/* Case Detail Section - Mobile */
@media (max-width: 767px) {
    .case-detail-section {
        padding: 40px 0 60px;
    }

    .case-detail-block {
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .case-detail-title {
        font-size: 18px;
    }

    .case-detail-intro,
    .case-detail-list li,
    .case-detail-conclusion {
        font-size: 15px;
        line-height: 1.7;
    }

    .case-detail-list li {
        line-height: 1.8;
    }
}

/* ========================================
   Case Testimonials Section
   ======================================== */
.case-testimonials-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #4DD0E1 0%, #26C6DA 100%);
}

.case-testimonials-title {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.case-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.case-testimonial-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.case-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.case-testimonial-info {
    flex: 1;
}

.case-testimonial-name {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.case-testimonial-role {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.case-testimonial-quote {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding: 0;
    border: none;
}

/* Case Testimonials - Desktop */
@media (min-width: 768px) {
    .case-testimonials-section {
        padding: 80px 0 100px;
    }

    .case-testimonials-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .case-testimonial-card {
        padding: 30px 40px;
    }

    .case-testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .case-testimonial-name {
        font-size: 20px;
    }

    .case-testimonial-quote {
        font-size: 17px;
    }
}

/* Case Testimonials - Mobile */
@media (max-width: 767px) {
    .case-testimonials-section {
        padding: 40px 0 60px;
    }

    .case-testimonials-list {
        padding: 0 16px;
    }

    .case-testimonial-card {
        padding: 20px;
    }

    .case-testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .case-testimonial-name {
        font-size: 16px;
    }

    .case-testimonial-role {
        font-size: 13px;
    }

    .case-testimonial-quote {
        font-size: 15px;
    }
}

/* ========================================
   Products Template Section
   ======================================== */
.page-template-template-products .main-content {
    padding-top: 56px;
}

@media (min-width: 769px) {
    .page-template-template-products .main-content {
        padding-top: 0 !important;
    }
}

.products-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.products-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    background: #555;
}

.products-banner-img {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
}

.products-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
}

.products-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.products-banner-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.products-banner-subtitle {
    color: #FFF;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .products-banner-img {
        width: 100%;
        height: 207px;
    }
}

@media (min-width: 768px) {
    .products-banner-title {
        font-size: 48px;
    }

    .products-banner-subtitle {
        font-size: 20px;
    }
}

/* Category Filter */
.products-category-section {
    padding: 40px 0 20px;
    background: #FFFFFF;
}

.products-category-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 16px;
}

.products-category-filter::-webkit-scrollbar {
    display: none;
}

.products-category-filter .category-btn {
    flex: 0 0 calc((100% - 10px * 3) / 4);
    min-width: auto;
    font-size: 13px;
    padding: 6px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-category-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto 24px;
}

.category-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-arrow:hover {
    border-color: #0097DA;
    color: #0097DA;
}

.category-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 769px) {
    .category-arrow {
        display: flex;
    }

    .products-category-filter {
        gap: 16px;
        padding: 0;
        margin-bottom: 0;
    }

    .products-category-filter .category-btn {
        flex: 0 0 calc((100% - 16px * 4) / 5);
        font-size: 16px;
        padding: 8px 32px;
    }
}

.products-category-description {
    text-align: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Products Grid */
.products-cards-section {
    padding: 40px 0 80px;
    background: #FFFFFF;
}

.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #EFEFEF;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    width: 100%;
    position: relative;
    padding: 10px;
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 10px;
}

.product-card-image img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #FFF;
    z-index: 2;
}

.product-badge.hot {
    background-color: #B5D230;
}

.product-badge.sale {
    background-color: #FF0000;
}

.product-card-content {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 4px 0;
    color: #333;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: #0097DA;
}

.product-card-price {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2A81C3;
    margin-bottom: 12px;
}

.product-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec-tag {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 11px;
    color: #2A81C3;
    border: 1px solid #2A81C3;
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    height: 24px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-btn {
    display: flex;
    width: 100%;
    height: 38px;
    justify-content: center;
    align-items: center;
    background: #569CE5;
    color: #FFF;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}

.product-card-btn:hover {
    background: #3B86D4;
    color: #FFF;
}

@media (max-width: 768px) {
    .product-card-image {
        padding: 6px;
        margin-bottom: 4px;
    }

    .product-card-image img {
        height: 140px;
    }

    .product-card-content {
        padding: 0 10px 12px;
    }

    .product-card-title {
        font-size: 13px;
        margin: 0 0 2px 0;
        min-height: 2.8em;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card-price {
        font-size: 14px;
        margin-bottom: 6px;
        min-height: 1.4em;
    }

    .product-card-specs {
        gap: 4px;
        margin-bottom: 10px;
        flex-grow: 0;
        min-height: 22px;
    }

    .spec-tag {
        font-size: 10px;
        padding: 1px 5px;
        height: 20px;
    }

    .product-card-btn {
        height: 32px;
        font-size: 12px;
    }

    .product-badge {
        top: 8px;
        right: 8px;
        padding: 2px 6px;
        font-size: 9px;
    }
}

@media (min-width: 769px) {
    .products-cards-grid {
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .products-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Pagination */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.products-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.products-pagination a,
.products-pagination span {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #2A81C3;
    background: #FFF;
    color: #2A81C3;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Next / Prev buttons specifically */
.products-pagination a.next,
.products-pagination a.prev {
    width: auto;
    padding: 0 24px;
    border-radius: 22px;
}

.products-pagination a:hover,
.products-pagination .current {
    background: #2A81C3;
    color: #FFF;
}

.products-no-posts {
    text-align: center;
    padding: 60px 20px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    color: #666;
}

/* ========================================
   Single Product Template Section
   ======================================== */
.single-product-section {
    padding: 30px 0 80px;
    background: #FFFFFF;
}

/* Breadcrumbs */
.product-breadcrumbs {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.product-breadcrumbs a:hover {
    color: #2A81C3;
}

/* Top Area (Gallery + Summary) */
.single-product-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .single-product-top {
        flex-direction: row;
        gap: 60px;
    }
}

/* Left: Gallery */
.product-gallery {
    flex: 1;
    max-width: 100%;
}

@media (min-width: 992px) {
    .product-gallery {
        max-width: 42%;
        flex: 0 0 42%;
    }
}

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #f8f8f8;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 16px;
    box-sizing: border-box;
}

.product-gallery .thumbnail-images {
    display: flex;
    gap: 8px;
}

.product-gallery .thumbnail-images img {
    width: calc(20% - 6.4px);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.product-gallery .thumbnail-images img:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

/* Right: Summary */
.product-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px 0;
}

.product-sku {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.product-rating {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating .stars {
    color: #FFC107;
    letter-spacing: 2px;
}

/* Pricing */
.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 30px;
}

.product-pricing .sale-price {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2A81C3;
}

.product-pricing .regular-price {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-pricing .discount-badge {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FFF;
    background: #FF4D4F;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Options */
.product-options {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2A81C3;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-btn {
    background: #FFF;
    border: 1px solid #CCC;
    padding: 10px 24px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 14px;
    color: #333;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}

.sp-btn:hover {
    border-color: #2A81C3;
}

.sp-btn.active {
    border-color: #2A81C3;
    color: #2A81C3;
    font-weight: 700;
}

.sp-btn.spec-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
}

.sp-btn.spec-btn .spec-price {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.sp-btn.spec-btn.active {
    background-color: #2A81C3;
    color: #FFF;
}

.sp-btn.spec-btn.active .spec-price {
    color: rgba(255, 255, 255, 0.8);
}

/* Quantity & Action */
.product-quantity-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qty-input {
    display: flex;
    align-items: center;
    border: 1px solid #CCC;
    border-radius: 2px;
    width: 120px;
    height: 40px;
}

.qty-btn {
    background: #FFF;
    border: none;
    width: 36px;
    height: 100%;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #F0F0F0;
}

.qty-val {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #333;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.stock-info {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    color: #888;
}

.btn-inquiry {
    background: #2A81C3;
    color: #FFF;
    border: none;
    border-radius: 2px;
    height: 48px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    max-width: 300px;
}

.btn-inquiry:hover {
    background: #1C659C;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.product-features span {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 13px;
    color: #A3C94D;
    display: flex;
    align-items: center;
}

/* Single Product Mobile Responsive */
@media (max-width: 768px) {
    .product-gallery .main-image {
        border: none;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .product-gallery .thumbnail-images {
        gap: 8px;
    }

    .product-title {
        font-size: 22px;
    }

    .product-pricing .sale-price {
        font-size: 26px;
    }

    .option-buttons {
        flex-wrap: nowrap;
    }

    .option-buttons .sp-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
    }

    .option-buttons.specs .sp-btn.spec-btn {
        flex: 1;
        padding: 10px 12px;
    }

    .qty-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .qty-input {
        width: 100%;
        height: 44px;
    }

    .qty-btn {
        width: 44px;
    }

    .btn-inquiry {
        max-width: 100%;
    }

    .product-features {
        display: none;
    }
}

/* Bottom Tabs */
.single-product-tabs {
    margin-top: 0;
    padding-top: 0;
}

@media (min-width: 992px) {
    .single-product-tabs {
        max-width: calc(42% - 30px);
    }
}

.single-product-tabs .tab-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border: 2px solid #2A81C3;
}

.single-product-tabs .tab-nav::-webkit-scrollbar {
    display: none;
}

.single-product-tabs .tab-btn {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    border-right: 2px solid #2A81C3;
    padding: 14px 24px;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2A81C3;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
}

.single-product-tabs .tab-btn:last-child {
    border-right: none;
}

.single-product-tabs .tab-btn:hover {
    background: rgba(42, 129, 195, 0.08);
}

.single-product-tabs .tab-btn.active {
    background: #2A81C3;
    color: #fff;
}

.single-product-tabs .tab-content {
    padding: 30px 0;
}

.single-product-tabs .tab-pane {
    display: none;
}

@media (max-width: 768px) {
    .single-product-tabs .tab-btn {
        padding: 10px 8px;
        font-size: 14px;
    }
}

.single-product-tabs .tab-pane.active {
    display: block;
}

/* ========================================
   Contact Template Section
   ======================================== */
.contact-banner {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .contact-banner .services-banner-title {
        font-size: 24px;
    }
}

/* TW Contact Grid */
.tw-contact-section {
    padding: 80px 0;
    background: #FFF;
}

.tw-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .tw-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    text-align: center;
}

.card-pill-heading {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-pill-heading h3 {
    margin: 0;
    color: #FFF;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-pill-heading.style-blue {
    background: linear-gradient(135deg, #74AED4 0%, #AEE0F8 100%);
}

.card-pill-heading.style-green {
    background: linear-gradient(135deg, #A8C63E 0%, #D4E87C 100%);
}

.card-pill-heading.style-blue-light {
    background: linear-gradient(135deg, #5CA9DB 0%, #B2E5FC 100%);
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.card-content ul li {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.card-content ul li::before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
}

.biz-info {
    text-align: left;
    display: inline-block;
}

.biz-info p {
    font-family: "Noto Sans TC", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 8px 0;
}

.biz-info a {
    color: #333;
    text-decoration: underline;
}

.biz-info a:hover {
    color: #2A81C3;
}

/* Contact Cards - Mobile horizontal layout */
@media (max-width: 767px) {
    .tw-contact-section {
        padding: 40px 0;
    }

    .tw-contact-grid {
        gap: 28px;
        margin-top: 24px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .contact-card .card-pill-heading {
        display: flex;
        width: 107px;
        min-width: 107px;
        height: 72px;
        padding: 47px 13px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 100px;
        margin-bottom: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-card .card-pill-heading h3 {
        font-size: 15px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .contact-card .card-content {
        flex: 1;
    }

    .contact-card .card-content ul {
        display: block;
    }

    .contact-card .card-content ul li {
        color: #000 !important;
        font-family: "Noto Sans TC", sans-serif !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 24px !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
        position: static !important;
        display: block !important;
    }

    .contact-card .card-content ul li::before {
        content: "・" !important;
        position: static !important;
        color: #000 !important;
    }

    .contact-card .biz-info {
        display: block;
    }

    .contact-card .biz-info p {
        color: #000;
        font-family: "Noto Sans TC", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
    }

    .contact-card .biz-info a {
        color: #000;
        font-family: "Noto Sans TC", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}

/* Global Agents */
.global-agents-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #B5E9FB 0%, rgba(181, 233, 251, 0.00) 100%);
}

.global-agents-section .section-title {
    color: #2A81C3;
    font-weight: 700;
}

.global-agents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.agent-card {
    background: #FFF;
    padding: 35px 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.agent-card-top {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.agent-region {
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    color: #569CE5;
    margin: 0;
    width: 250px;
    flex-shrink: 0;
}

.agent-name {
    font-family: inherit;
    font-size: 15px;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.agent-card-bottom {
    display: flex;
    flex-direction: column;
}

.agent-card-bottom p {
    font-family: inherit;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 5px 0;
}
