@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;500&display=swap');

@font-face {
font-family: 'ZhuoTeQingYaTi';
src: url('fonts/ZhuoTeQingYaTi-2.otf') format('opentype');
font-weight: normal;
font-style: normal;
font-display: swap;
}

:root {
--primary-color: #63ADD6;
--secondary-color: #334155;
--accent-color: #63ADD6;
--text-color: #1e293b;
--logo-text-color: #1e293b;
--light-bg: #f2efe9;
--white: #f7f4ee;
--border-color: #e6dfd1;
--card-bg: #f7f4ee;
--footer-bg: #22201e;
--footer-text: #ffffff;
--footer-desc: #ffffff;
--transition: background-color 0.3s ease, color 0.3s ease;
--logo-img: url('img/Millionlink_Logo.png');
--scrollbar-track: #f7f4ee;
--scrollbar-thumb: #d4cebe;
--scrollbar-thumb-hover: #b5ac9b;
}

[data-theme="dark"] {
--primary-color: #38bdf8;
--secondary-color: #f1f5f9;
--accent-color: #38bdf8;
--text-color: #ffffff;
--logo-text-color: #ffffff;
--light-bg: #121212;
--white: #1a1a1a;
--border-color: #2a2a2a;
--card-bg: #1a1a1a;
--footer-bg: #0d0d0d;
--footer-text: #ffffff;
--footer-desc: #f1f5f9;
--logo-img: url('img/Millionlink_Logo_night.png');
--scrollbar-track: #1a1a1a;
--scrollbar-thumb: #333333;
--scrollbar-thumb-hover: #4d4d4d;
}

html {
background-color: #f7f4ee;
scrollbar-width: thin;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html[data-theme="dark"] {
background-color: #1a1a1a;
}

{
scrollbar-width: thin;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb);
border-radius: 4px;
border: 2px solid transparent;
background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
background: var(--scrollbar-thumb-hover);
border: 2px solid transparent;
background-clip: padding-box;
}

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: var(--text-color);
background-color: var(--white);
line-height: 1.7;
font-size: 16px;
transition: var(--transition);
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

ul {
list-style: none;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 10px;
}

.site-header {
background: rgba(247, 244, 238, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 2px 10px rgba(0,0,0,0.04);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(230, 223, 209, 0.5);
width: 100%;
transition: transform 0.3s ease;
}

[data-theme="dark"] .site-header {
background: rgba(26, 26, 26, 0.6);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
max-width: 100%;
width: 100%;
padding: 0 20px;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}

.logo-img {
height: 42px;
width: auto;
object-fit: contain;
content: var(--logo-img);
}

.logo-text {
font-size: 24px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--logo-text-color);
letter-spacing: 0.5px;
white-space: nowrap;
}

[data-lang="en"] .logo-text {
font-family: "Oswald", sans-serif;
}

.desktop-middle-nav {
background: rgba(247, 244, 238, 0.5);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: none;
padding: 6px 40px;
-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
}

[data-theme="dark"] .desktop-middle-nav {
background: rgba(26, 26, 26, 0.5);
border: none;
-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
}

.desktop-middle-nav ul {
display: flex;
gap: 24px;
}

.desktop-middle-nav a {
font-size: 15px;
font-weight: normal;
color: var(--secondary-color);
padding: 8px 12px;
position: relative;
white-space: nowrap;
}

.desktop-middle-nav a:hover, .desktop-middle-nav a.active {
color: var(--accent-color);
}

.desktop-middle-nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: all 0.3s ease;
}

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

.header-controls {
display: flex;
gap: 8px;
align-items: center;
flex-shrink: 0;
}

.control-btn {
background: var(--light-bg);
border: 1px solid var(--border-color);
padding: 6px 12px;
border-radius: 6px;
font-size: 14px;
font-weight: normal;
cursor: pointer;
color: var(--text-color);
transition: all 0.3s ease;
white-space: nowrap;
}

.control-btn:hover {
background: var(--accent-color);
color: var(--white);
border-color: var(--accent-color);
}

.lang-switch-capsule {
display: inline-flex;
background: var(--light-bg);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 2px;
gap: 2px;
}

.lang-option {
background: transparent;
border: none;
padding: 4px 10px;
border-radius: 4px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
color: var(--text-color);
transition: background-color 0.3s ease, color 0.3s ease;
}

[data-lang="en"] [data-lang-val="en"],
[data-lang="zh"] [data-lang-val="zh"] {
background-color: var(--accent-color);
color: #ffffff;
}

.hamburger-btn {
display: flex;
background: var(--light-bg);
border: 1px solid var(--border-color);
width: 38px;
height: 38px;
border-radius: 6px;
font-size: 18px;
cursor: pointer;
align-items: center;
justify-content: center;
color: #000000;
transition: all 0.3s ease;
flex-shrink: 0;
}

[data-theme="dark"] .hamburger-btn {
color: #ffffff;
}

.hamburger-btn:hover {
background: var(--light-bg);
color: var(--accent-color);
border-color: var(--border-color);
}

.mobile-sidebar {
position: fixed;
top: 0;
right: -300px;
width: 280px;
height: 100%;
background: rgba(247, 244, 238, 0.6);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-left: 1px solid rgba(230, 223, 209, 0.5);
z-index: 2000;
box-shadow: -5px 0 25px rgba(0,0,0,0.15);
transition: right 0.3s ease;
display: flex;
flex-direction: column;
}

[data-theme="dark"] .mobile-sidebar {
background: rgba(26, 26, 26, 0.6);
border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar.active {
right: 0;
}

.mobile-sidebar-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-bottom: 1px solid rgba(230, 223, 209, 0.5);
}

[data-theme="dark"] .mobile-sidebar-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar-title {
font-size: 20px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--primary-color);
}

[data-lang="en"] .mobile-sidebar-title {
font-family: "Oswald", sans-serif;
}

.mobile-sidebar-close {
background: transparent;
border: none;
font-size: 26px;
cursor: pointer;
color: #000000;
transition: color 0.3s ease;
}

[data-theme="dark"] .mobile-sidebar-close {
color: #ffffff;
}

.mobile-sidebar-close:hover {
color: var(--accent-color);
}

.mobile-sidebar-nav {
padding: 20px;
overflow-y: auto;
flex: 1;
text-align: center;
}

.mobile-sidebar-nav ul {
display: flex;
flex-direction: column;
gap: 15px;
}

.mobile-sidebar-nav a {
font-size: 16px;
font-weight: normal;
color: var(--secondary-color);
display: block;
padding: 10px 0;
border-bottom: 1px solid rgba(230, 223, 209, 0.5);
}

[data-theme="dark"] .mobile-sidebar-nav a {
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar-nav a:hover, .mobile-sidebar-nav a.active {
color: var(--accent-color);
padding-left: 0;
}

.hero-section {
position: relative;
background-color: var(--footer-bg);
color: #ffffff;
padding: 200px 0 160px;
margin-top: -80px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

[data-theme="dark"] .hero-section {
background-color: var(--footer-bg);
}

.hero-section-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/Photo_Cover.jpg');
background-size: cover;
background-position: center;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 900px;
}

.hero-content h1 {
font-size: 64px;
margin-bottom: 24px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
letter-spacing: 1px;
color: var(--primary-color);
}

[data-lang="en"] .hero-content h1 {
font-family: "Oswald", sans-serif;
}

.hero-content p {
font-size: 20px;
color: #ffffff;
margin-bottom: 40px;
line-height: 1.8;
}

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

.hero-section.magazine-hero {
text-align: left;
justify-content: flex-start;
padding: 160px 0 120px;
}

.hero-section.magazine-hero .hero-content {
max-width: 950px;
margin-left: 5%;
}

.magazine-subtitle {
display: inline-block;
font-size: 16px;
font-weight: 800;
letter-spacing: 8px;
text-transform: uppercase;
color: var(--accent-color);
margin-bottom: 24px;
border-left: 4px solid var(--accent-color);
padding-left: 12px;
}

.hero-section.magazine-hero .magazine-title {
font-size: 78px;
font-weight: 300;
line-height: 1.05;
letter-spacing: -1px;
margin-bottom: 30px;
color: #ffffff;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
}

[data-lang="en"] .hero-section.magazine-hero .magazine-title {
font-size: 68px;
letter-spacing: 0px;
font-family: "Oswald", sans-serif;
}

.hero-section.magazine-hero .magazine-title span {
display: block;
color: rgba(255, 255, 255, 0.95);
margin-bottom: 10px;
}

.hero-section.magazine-hero .magazine-title strong {
display: block;
font-weight: 700;
color: var(--accent-color);
letter-spacing: 1px;
font-size: 86px;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
}

[data-lang="en"] .hero-section.magazine-hero .magazine-title strong {
font-size: 76px;
font-family: "Oswald", sans-serif;
}

.hero-section.magazine-hero p {
font-size: 20px;
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 45px;
max-width: 680px;
border-left: 2px solid rgba(255, 255, 255, 0.4);
padding-left: 18px;
line-height: 1.6;
}

.hero-section.magazine-hero .hero-actions {
justify-content: flex-start;
}

.btn {
padding: 14px 32px;
border-radius: 4px;
font-weight: 500;
font-size: 18px;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
letter-spacing: 0.5px;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
white-space: nowrap;
}

[data-lang="en"] .btn {
font-family: "Oswald", sans-serif;
}

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

.btn-primary:hover {
opacity: 0.9;
}

.btn-outline {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.4);
color: var(--white);
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.8);
color: var(--white);
}

[data-theme="dark"] .btn-outline {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
color: #ffffff;
}

[data-theme="dark"] .btn-outline:hover {
background: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.7);
color: #ffffff;
}

.page-header {
position: relative;
background-color: var(--footer-bg);
color: #ffffff;
padding: 200px 0 120px;
margin-top: -80px;
text-align: center;
overflow: hidden;
}

[data-theme="dark"] .page-header {
background-color: var(--footer-bg);
}

.page-header-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/photo_staff_group.jpg');
background-size: cover;
background-position: center;
z-index: 1;
}

.contact-header .page-header-bg {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/Photo_Meeting.jpg');
}

.page-header .container {
position: relative;
z-index: 2;
}

.page-header h1 {
font-size: 64px;
margin-bottom: 12px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
letter-spacing: 1px;
color: var(--primary-color);
}

[data-lang="en"] .page-header h1 {
font-family: "Oswald", sans-serif;
}

.page-header p {
font-size: 18px;
color: #ffffff;
}

.content-section {
padding: 80px 0;
}

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

.feature-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 40px 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.about-grid {
display: grid;
grid-template-columns: 1fr;
gap: 60px;
align-items: center;
}

.about-stats-box {
display: flex;
flex-direction: column;
gap: 20px;
}

.stat-item {
background: var(--card-bg);
border: 1px solid var(--border-color);
padding: 25px 30px;
border-radius: 6px;
box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.stat-number {
font-size: 38px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--accent-color);
margin-bottom: 5px;
}

[data-lang="en"] .stat-number {
font-family: "Oswald", sans-serif;
}

.company-profile-section {
background-color: var(--light-bg);
}

.profile-card {
background: var(--card-bg);
padding: 50px;
border-radius: 6px;
border: 1px solid var(--border-color);
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
position: relative;
overflow: hidden;
}

.cert-download-group {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}

.cert-download-btn {
font-size: 15px;
padding: 12px 24px;
box-shadow: 0 4px 12px rgba(99, 173, 214, 0.2);
transition: transform 0.2s ease, opacity 0.2s ease;
}

.cert-download-btn:hover {
transform: translateY(-2px);
}

.profile-header {
margin-bottom: 25px;
}

.profile-header h2 {
font-size: 36px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--primary-color);
margin-top: 5px;
letter-spacing: 0.5px;
}

[data-lang="en"] .profile-header h2 {
font-family: "Oswald", sans-serif;
}

.profile-lead {
font-size: 17px;
color: var(--text-color);
line-height: 1.8;
margin-bottom: 35px;
font-weight: normal;
}

.profile-meta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
padding-top: 25px;
border-top: 1px solid var(--border-color);
}

.meta-item {
background: var(--light-bg);
padding: 18px 20px;
border-radius: 4px;
border: 1px solid var(--border-color);
}

.meta-label {
display: block;
font-size: 13px;
font-weight: 700;
color: var(--secondary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 6px;
}

.meta-value {
font-size: 16px;
font-weight: 700;
color: var(--primary-color);
}

.strategy-showcase-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-top: 30px;
}

.strategy-category-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 35px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.strategy-category-title {
font-size: 24px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--primary-color);
margin-bottom: 25px;
display: flex;
align-items: center;
gap: 10px;
border-bottom: 2px solid var(--light-bg);
padding-bottom: 15px;
letter-spacing: 0.5px;
}

[data-lang="en"] .strategy-category-title {
font-family: "Oswald", sans-serif;
}

.strategy-items-list {
display: flex;
flex-direction: column;
gap: 16px;
}

.strategy-item-row {
display: flex;
gap: 15px;
align-items: flex-start;
}

.strategy-index {
background: var(--light-bg);
color: var(--primary-color);
border: 1px solid var(--border-color);
width: 26px;
height: 26px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 700;
flex-shrink: 0;
margin-top: 2px;
}

.strategy-text {
font-size: 15px;
color: var(--text-color);
line-height: 1.7;
}

.products-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 12px;
}

.product-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 10px;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
gap: 8px;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-img-box {
width: 100%;
height: 200px;
background-color: var(--light-bg);
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-color);
}

.product-img-box img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-img-placeholder {
color: var(--secondary-color);
font-size: 15px;
font-weight: 600;
}

.product-card h3 {
font-size: 18px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--primary-color);
letter-spacing: 0.5px;
}

[data-lang="en"] .product-card h3 {
font-family: "Oswald", sans-serif;
}

.product-country {
color: var(--accent-color);
font-size: 13px;
font-weight: 600;
}

.site-footer {
background-color: var(--footer-bg);
color: var(--footer-text);
padding: 70px 0 30px;
transition: var(--transition);
}

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

.footer-info h3 {
font-size: 26px;
margin-bottom: 15px;
color: var(--primary-color);
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
}

[data-lang="en"] .footer-info h3 {
font-family: "Oswald", sans-serif;
}

.footer-info p {
color: #ffffff;
font-size: 15px;
line-height: 1.7;
max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
font-size: 18px;
margin-bottom: 20px;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
}

[data-lang="en"] .footer-links h4, [data-lang="en"] .footer-contact h4 {
font-family: "Oswald", sans-serif;
}

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

.footer-links a {
color: #ffffff;
font-size: 14px;
}

.footer-links a:hover {
color: var(--accent-color);
padding-left: 5px;
}

.footer-contact p {
color: #ffffff;
font-size: 14px;
margin-bottom: 10px;
}

.footer-bottom {
text-align: center;
padding-top: 25px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #ffffff;
font-size: 14px;
}

.site-header.header-hidden {
transform: translateY(-100%);
}

@media (max-width: 1400px) {
.products-grid {
grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 1200px) {
.products-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 992px) {
.desktop-middle-nav {
display: none;
}
}

@media (max-width: 768px) {
.nav-container {
padding: 0 10px;
}

.logo-text {
    font-size: 20px;
}

.hero-section-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/lights-planet-earth-europe.jpg');
}

.contact-header .page-header-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/Photo_Meeting_2.jpg');
}

.hero-section.magazine-hero .magazine-subtitle {
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 16px;
}

.hero-section.magazine-hero .magazine-title {
    font-size: 38px;
}

[data-lang="en"] .hero-section.magazine-hero .magazine-title {
    font-size: 34px;
}

.hero-section.magazine-hero .magazine-title strong {
    font-size: 42px;
}

[data-lang="en"] .hero-section.magazine-hero .magazine-title strong {
    font-size: 38px;
}

.hero-section.magazine-hero p {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-section.magazine-hero .btn {
    font-size: 16px;
    padding: 12px 24px;
}

.hero-section.magazine-hero .hero-content {
    margin-left: 20px;
    margin-right: 20px;
}

.products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.home-gallery {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

.hero-section {
    padding: 120px 0 60px;
    max-height: 320px;
}

.page-header {
    padding: 110px 0 50px;
    max-height: none;
}

.contact-header {
    max-height: none;
}

.hero-section.magazine-hero {
    padding: 100px 0 50px;
    max-height: none;
}


}

@media (max-width: 992px) {
.features-grid, .about-grid, .footer-content, .strategy-showcase-grid {
grid-template-columns: 1fr;
}
}

.faq-container h3 {
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
letter-spacing: 0.5px;
}

[data-lang="en"] .faq-container h3 {
font-family: "Oswald", sans-serif;
}

@media (max-width: 768px) {
.faq-container > div {
padding: 20px !important;
word-break: break-all;
overflow-wrap: break-word;
}

.faq-container a {
    word-break: break-all;
    overflow-wrap: break-word;
}


}

.home-gallery {
margin-top: 30px;
width: 600px;
height: 180px;
border-radius: 4px;
overflow: hidden;
position: relative;
border: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
background-color: #111;
transform: translateZ(0);
}

.gallery-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
will-change: opacity;
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.gallery-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
-webkit-transform: translateZ(0);
transform: translateZ(0);
}

.home-gallery:hover .gallery-img {
transform: scale(1.03) translateZ(0);
transition: transform 0.8s ease;
}

.gallery-gradient {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 110px;
background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
pointer-events: none;
z-index: 3;
}

.gallery-caption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 10px 14px;
color: #fff;
display: flex;
flex-direction: column;
pointer-events: none;
z-index: 4;
}

#gallery-title {
font-size: 15px;
font-weight: 500;
color: var(--accent-color);
margin-bottom: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
letter-spacing: 1px;
}

[data-lang="en"] #gallery-title {
font-family: "Oswald", sans-serif;
letter-spacing: 0.5px;
}

#gallery-desc {
font-size: 11px;
color: rgba(255,255,255,0.85);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.about-text-box h2 {
font-size: 36px;
font-weight: 500;
font-family: "ZhuoTeQingYaTi", "Oswald", sans-serif;
color: var(--primary-color);
margin-top: 5px;
letter-spacing: 0.5px;
}

[data-lang="en"] .about-text-box h2 {
font-family: "Oswald", sans-serif;
}