:root { --header-offset: 122px; }
body { padding-top: var(--header-offset); margin: 0; font-family: Arial, sans-serif; color: #1F2D3D; overflow-x: hidden; }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); background-color: #2F6BFF; }
.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #2F6BFF; width: 100%; padding: 0 20px; }
.header-container { box-sizing: border-box; width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; color: #FFFFFF; text-decoration: none; display: flex; align-items: center; height: 100%; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; }

.desktop-nav-buttons { display: flex; gap: 12px; align-items: center; }
.btn { text-decoration: none; padding: 10px 20px; border-radius: 5px; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; white-space: nowrap; cursor: pointer; border: none; text-align: center; color: #FFFFFF; background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }

.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; width: 100%; background-color: #2F6BFF; }

.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #6FA3FF; width: 100%; }
.nav-container { box-sizing: border-box; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; }
.nav-link { color: #FFFFFF; text-decoration: none; padding: 8px 15px; font-weight: bold; transition: background-color 0.3s ease; white-space: nowrap; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.2); border-radius: 4px; }

.hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; position: absolute; left: 15px; z-index: 1001; }
.hamburger-icon { display: block; width: 25px; height: 3px; background-color: #FFFFFF; position: relative; transition: background-color 0.3s ease; }
.hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 100%; height: 3px; background-color: #FFFFFF; position: absolute; transition: transform 0.3s ease; }
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { top: 8px; }
.hamburger-menu.active .hamburger-icon { background-color: transparent; }
.hamburger-menu.active .hamburger-icon::before { transform: translateY(8px) rotate(45deg); }
.hamburger-menu.active .hamburger-icon::after { transform: translateY(-8px) rotate(-45deg); }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 999; }
.overlay.active { display: block; }

/* Footer Styles */
.site-footer { background-color: #F4F7FB; color: #1F2D3D; padding: 40px 20px 20px; font-size: 14px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; }
.footer-col h3 { color: #000000; font-size: 16px; margin-bottom: 15px; }
.footer-logo { font-size: 22px; font-weight: bold; color: #2F6BFF; text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { line-height: 1.6; color: #1F2D3D; word-wrap: break-word; overflow-wrap: break-word; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #1F2D3D; text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: #2F6BFF; }
.footer-bottom { border-top: 1px solid #D6E2FF; padding-top: 20px; text-align: center; max-width: 1200px; margin: 0 auto; color: #1F2D3D; }
.footer-bottom p { margin: 0; }

.footer-slot-anchor-inner { min-height: 10px; }

/* Responsive Styles */
@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { padding-top: var(--header-offset); overflow-x: hidden; }

  .header-top { min-height: 60px; height: 60px; padding: 0 15px; position: relative; justify-content: center; }
  .header-container { width: 100%; max-width: none; padding: 0; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; }
  .logo img { max-height: 56px !important; }

  .hamburger-menu { display: block; }
  .desktop-nav-buttons { display: none !important; }
  .mobile-nav-buttons {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    width: 100%; max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    overflow: hidden;
    gap: 10px;
    flex-wrap: nowrap;
    background-color: #2F6BFF;
  }
  .mobile-nav-buttons .btn {
    flex: 1; min-width: 0;
    max-width: calc(50% - 5px);
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 13px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main-nav {
    min-height: 48px;
    height: calc(100% - var(--header-offset));
    position: fixed;
    top: var(--header-offset);
    left: 0;
    width: 80%;
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background-color: #6FA3FF; /* Should be visible when active */
    z-index: 1000;
    display: none; /* Hidden by default */
  }
  .main-nav.active {
    transform: translateX(0);
    display: flex; /* Show when active */
  }
  .nav-container { width: 100%; max-width: none; flex-direction: column; align-items: flex-start; padding: 20px 15px; }
  .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-link:last-child { border-bottom: none; }

  .site-footer { padding: 30px 15px 15px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-col { text-align: center; }
  .footer-col h3 { margin-bottom: 10px; }
  .footer-nav { margin-bottom: 20px; }

  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }
  body { overflow-x: hidden; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@media (max-width: 768px) {
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
}
