/* Base responsive styles */
* {
    box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/* Chrome-compatible viewport handling */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background: #ffffff !important;
}

body {
    background: #ffffff !important;
}

/* Improve font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-first approach for better performance */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Chrome-specific fixes */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Prevent element distortion in Chrome */
.container, .header-container, .main-nav, .hero, .reasons-grid, .price-comparison, .case-studies-grid {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/* Ensure buttons are easily tappable */
button, .btn-primary, .btn-blue, .btn-outline, .btn-yellow, .btn-outline-wide, .upload-btn {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

/* Improve form elements accessibility */
input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Ensure proper word wrapping */
body {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Global Styles */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FAFAF8;
}

/* 统一所有文本颜色和字体大小 */
body, p, div, span, li, a, td, th {
    color: #333333 !important;
    font-size: 16px !important;
}

/* Spec Table Styles */
.spec-table {
    width: 100%;
    max-width: 600px;
    margin: 0 0 0 -1ch;
    padding-left: 1ch;
}

.spec-row {
    display: flex;
    margin-bottom: 10px;
}

.spec-label {
    width: 120px;
    font-weight: bold;
}

.spec-value {
    flex: 1;
}

/* 标题保持不同大小但统一颜色 */
h1 { font-size: 2.2rem !important; }
h2 { font-size: 2rem !important; font-weight: 700 !important; }
h3 { font-size: 1.8rem !important; }
h4 { font-size: 1.6rem !important; }
h5 { font-size: 1.4rem !important; }
h6 { font-size: 1.2rem !important; }

h1, h2, h3, h4, h5, h6 {
    color: #333333 !important;
}

/* Logo保持特殊颜色 */
.logo-red, .logo-sub {
    color: #e60012 !important;
}

/* 按钮文字颜色和大小保持原有样式 */
.btn-primary, .btn-secondary, .upload-btn {
    font-size: 0.9rem !important;
}

.btn-primary, .upload-btn {
    color: #ffffff !important;
}

.btn-secondary {
    color: #333 !important;
}

/* 按钮和特殊元素保持原有颜色 */
.btn-blue, .btn-yellow, .btn-outline, .btn-outline-wide {
    color: #fff !important;
}

.price, .blue-text, .badge, .tag,
.comparison-box .box-header, .step-header {
    color: inherit !important;
}

/* 统一段落文本样式 */
p, .p, .text, .content {
    color: #333333 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* 链接保持蓝色 */
a, .link {
    color: #4a90e2 !important;
}

a:hover, .link:hover {
    color: #4073DE !important;
}

/* 导航菜单颜色统一为#333333 */
.main-nav a, .mobile-menu a {
    color: #333333 !important;
}

/* 特殊标签保持原有颜色 */
.news-date, .news-category, .footer-text {
    color: #666 !important;
    font-size: 14px !important;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, p {
    margin: 0;
}

/* Header */
header {
    border-bottom: none;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: border-bottom 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #FAFAF8;
    box-shadow: none;
}

header.scrolled {
    border-bottom: 1px solid #FAFAF8;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0 20px 0 20px;
    position: relative;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        overflow: visible;
    }
}

.header-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .header-left {
        gap: 10px;
        overflow: visible;
    }
}



.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    margin-left: 0;
}

.logo-red {
    color: #e60012;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-sub {
    color: #e60012;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.main-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: bold;
    color: #333333;
}

/* Dropdown Menu */
.main-nav li {
    position: relative;
}

.main-nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 8px;
}

.main-nav .dropdown > a {
    padding-bottom: 18px;
}

.main-nav .dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.75rem;
    font-weight: normal;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.main-nav .dropdown-content a:last-child {
    border-bottom: none;
}

.main-nav .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #4a90e2;
}

.main-nav li:hover .dropdown-content {
    display: block;
}

/* Only add dropdown arrow to the "製品を選ぶ" link */
.main-nav .dropdown > a::after {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    padding-right: 20px;
}

.header-link {
    font-size: 0.7rem;
    color: #333333;
}

.btn-primary {
    background-color: #4a90e2;
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem !important;
}

.upload-btn {
    background-color: #00aaff;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.upload-btn:hover {
    color: #ffffff !important;
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.upload-btn::before {
    content: "☁"; /* Simple icon placeholder */
    font-size: 1.2em;
}

/* Vertical FAQ Button */
.vertical-faq-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.vertical-faq-link {
    display: block;
    width: 30px;
    height: 200px;
    background-color: #4a90e2;
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    border-radius: 3px 0 0 3px;
    transition: background-color 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-faq-link:hover {
    background-color: #357abd;
    color: #ffffff !important;
}

.vertical-faq-link.active {
    background-color: #357abd;
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    padding: 110px 0 15px 0;
    position: relative;
    overflow: hidden;
    background-color: #FAFAF8;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    color: #333333 !important;
    font-size: 1.4rem !important;
    margin-bottom: 10px;
}

.hero-title-blue {
    color: #4273DB !important;
    text-align: center !important;
    margin: 5px 0 !important;
    line-height: 1.2 !important;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.hero h1 {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 30px;
}

.badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.badge img {
    height: 60px; /* Adjust based on image */
    width: auto;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.tags span {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 8px !important;
    font-size: 0.9rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
}

/* 确保英雄区域和设计区域的按钮样式一致 */
.hero-buttons .btn-blue,
.design-buttons .btn-blue {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 250px !important;
    max-width: 250px !important;
    width: 250px !important;
    box-sizing: border-box !important;
    padding: 15px 16px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    background-color: #4273DB !important;
    border: 2px solid #4273DB !important;
}

.hero-buttons .btn-outline,
.design-buttons .btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 250px !important;
    max-width: 250px !important;
    width: 250px !important;
    box-sizing: border-box !important;
    padding: 15px 16px !important;
    border-radius: 4px !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

.btn-blue {
    background-color: #4273DB;
    color: #fff;
    padding: 15px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #4273DB;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 250px;
    max-width: 250px;
    width: 250px;
    box-sizing: border-box;
}

.btn-outline {
    background-color: #fff;
    color: #4273DB !important;
    border: 2px solid #4273DB;
    padding: 15px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 250px;
    max-width: 250px;
    width: 250px;
    box-sizing: border-box;
}

.btn-blue:hover, .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-buttons .btn-blue:hover,
.design-buttons .btn-blue:hover,
.btn-blue:hover {
    color: #fff !important;
    background-color: #3561C7;
    border-color: #3561C7;
    background-color: #3561C7 !important;
    border: 2px solid #3561C7 !important;
}

/* 确保联系部分按钮悬停时文本保持白色 */
.contact-section .btn-blue:hover {
    color: #fff !important;
    background-color: #3561C7;
    border-color: #3561C7;
}

.btn-outline:hover {
    color: #4273DB !important;
    background-color: #f0f4ff;
}

/* Lineup button specific styling */
.lineup-btn {
    display: inline-block;
}

/* Long button variant */
.btn-long {
    min-width: 250px;
    max-width: 250px;
    width: 250px;
}

.hero-image-section {
    width: 45%;
    max-width: 500px;
    margin: 0 0 0 40px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.hero-image-section img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Specs Bar */
.specs-bar {
    padding: 40px 0 20px 0 !important;
    background-color: #fff !important;
    overflow: hidden !important;
    margin-top: -15px !important;
    position: relative !important;
    white-space: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.specs-bar-wrapper {
    display: flex;
    animation: floatRightToLeft 30s linear infinite;
    width: fit-content;
    transform: translateX(-25%);
    overflow: hidden;
    max-width: 100%;
}

.specs-bar {
    overflow: hidden;
    position: relative;
}

.specs-bar .container {
    display: flex;
    gap: 160px;
    padding: 0;
    flex-shrink: 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.spec-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@keyframes floatRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.specs-bar:hover .container {
    animation-play-state: paused;
}

/* Reasons Section */
.reasons {
    padding: 60px 0 80px 0;
    text-align: center;
    background-color: #fff;
    margin-top: -25px !important;
}

.reasons h1 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: bold;
}

.reasons h2 {
    font-size: 2rem;
    margin-bottom: 60px;
}

.reasons-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.reason-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-icon {
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reason-card h2,
.reason-card h3 {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

.reason-card p {
    font-size: 0.9rem;
    text-align: left;
    color: #666;
    margin-top: 0;
    line-height: 1.6;
}

.blue-text {
    color: #4273DB !important;
    font-weight: bold;
    font-size: 1.4rem !important;
    line-height: 1.4;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.reasons-footer .blue-text {
    color: #4273DB !important;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.4;
}

/* Color Card Section */
.color-card {
    padding: 80px 0 60px 0;
    background-color: #FAFAF8;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.color-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8e8e6" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e8e8e6" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23e8e8e6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.color-card h2 {
    text-align: center;
    margin-bottom: 110px;
    font-size: 2rem;
}

.color-card .container {
    position: relative;
    z-index: 2;
}

.color-card-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.orange-label {
    color: #4273DB !important;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.8rem !important;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.text-content h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d35400;
}

.tax {
    font-size: 1rem;
    color: #d35400;
}

.quantity {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400;
}

.desc {
    margin-bottom: 20px;
    color: #666;
}

.note {
    font-size: 0.8rem;
    color: #999;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    max-width: 600px;
}

.spec-box {
    border: 1px solid #b88d5e;
    color: #5e4b35;
    padding: 15px 10px;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    background-color: #fffdf8;
}

.spec-box.gray {
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #999;
}

.man-graphic {
    width: 600px;
    flex-shrink: 0;
}

.man-graphic img {
    width: 100%;
}

/* Clear Pricing */
.clear-pricing {
    padding: 120px 0;
    background-color: #FAFAF8;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-top: -30px;
    z-index: 2;
}

.clear-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8e8e6" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e8e8e6" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23e8e8e6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.pricing-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.pricing-graphic {
    flex: 1;
}

.pricing-graphic img {
    width: 100%;
}

.pricing-text {
    flex: 1;
}

.bold-label {
    color: #4273DB !important;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.8rem !important;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    text-align: left !important;
}

.pricing-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Support Section */
.support {
    padding: 80px 0;
    background-color: #FAFAF8;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8e8e6" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e8e8e6" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23e8e8e6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.support-text {
    flex: 1;
    text-align: left !important;
}

.support-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left !important;
}

.support-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #000;
    text-align: left !important;
}

.support-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left !important;
}

/* Additional specific styling for the support section content */
.support .support-content .support-text {
    text-align: left !important;
}

.support .support-content .support-text h3 {
    text-align: left !important;
}

.support .support-content .support-text p {
    text-align: left !important;
}

.support .support-content .support-text .bold-label {
    text-align: left !important;
}

.support-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.support-image {
    flex: 1;
    text-align: right;
    width: 500px;
}

.support-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* Steps Section */
.steps {
    padding: 30px 0 80px;
    text-align: center;
    background-color: #ffffff;
}

.steps h2 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step-card {
    border: 1px solid #777;
    width: 150px;
    height: 210px;
    padding: 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
}

.step-header {
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 15px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
    width: 80%;
}

.step-icon {
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    max-height: 100%;
    max-width: 100%;
}

.step-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.step-notes {
    color: #4a90e2;
    font-size: 0.9rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 400px;
    margin: 0 auto;
}

.step-image {
    width: 300px;
    flex-shrink: 0;
}

.step-image img {
    width: 100%;
    height: auto;
}

/* Lineup Section */
.lineup {
    padding: 80px 0;
    background-color: #fafafa;
}

.lineup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.lineup-title {
    flex: 1;
    margin-left: 50px;
}

.lineup-title h1,
.lineup-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

.lineup-title-main {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 15px;
}

.lineup-title p {
    margin-bottom: 20px;
}

.lineup-title-main::before {
    content: '';
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 100%;
    height: 20px;
    background-color: #FFC90D;
    z-index: -1;
}

.lineup-image {
    width: 550px;
    flex-shrink: 0;
    margin-top: -30px;
    margin-left: -10px;
}

.lineup-image img {
    width: 100%;
    height: auto;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 50px 0 0 auto;
    max-width: 1150px;
}

.lineup-item {
    background: #fff;
    padding: 0;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    height: 150px;
    width: 100%;
    max-width: 550px !important;
    text-align: left;
    box-sizing: border-box;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.lineup-item img {
    width: auto;
    height: 150px;
    max-width: 180px;
    object-fit: cover;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
    border-radius: 8px 0 0 8px;
}

.lineup-item .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 5px 5px;
}

.lineup-item h5 {
    margin: 0 0 2px 0 !important;
    font-size: 1.0rem !important;
    line-height: 1.1 !important;
}

.lineup-item h6 {
    margin: 0 0 2px 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.1 !important;
}

.lineup-item h3 {
    margin: 0 0 2px 0;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.lineup-item p {
    margin: 0;
    font-size: 0.65rem;
    color: #666;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.learn-more-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: #0066cc;
    font-weight: bold;
    pointer-events: none;
}

.color-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 40px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #4273DB;
    text-align: left;
}



/* Price Comparison Section */
.price-comparison {
    padding: 40px 0 20px 0;
    background-color: #fff;
    margin-bottom: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.comparison-box {
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Other Company (Orange) */
.comparison-box.other-company .box-header {
    background-color: #d99f48;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
}

.comparison-box.other-company .box-body {
    background-color: #eebf6c;
    color: #fff;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-box.other-company .box-footer {
    background-color: #fcebc9;
    color: #333;
    text-align: center;
    padding: 15px;
    margin-top: auto;
    border-radius: 8px;
    font-weight: bold;
    line-height: 1.4;
}

/* Our Company (Blue) */
.comparison-box.our-company .box-header {
    background-color: #87c2d5;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
}

.comparison-box.our-company .box-body {
    background-color: #bde4f0;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.price-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
}

.small-text {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
    margin-left: 1em;
    opacity: 0.9;
}

.comparison-box.our-company .price-list li {
    color: #fff;
}

.price-highlight {
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 30px 0;
    line-height: 1.4;
}

.box-footer-highlight {
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: auto;
}

.small-label {
    font-size: 1rem;
    font-weight: normal;
}

.price-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

/* News Section */
.news-section {
    padding: 30px 0;
    background-color: #ffffff;
    margin-top: -30px !important;
}

.news-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.news-label-area {
    margin-right: 30px;
    flex-shrink: 0;
}

.news-big-badge {
    background-color: #d99f48;
    color: #fff;
    font-size: 1rem;
    padding: 8px 30px;
    border-radius: 50px; /* Capsule shape */
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
}

.news-items-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-scroll-container {
    max-height: 120px;
    overflow-y: hidden;
    padding-right: 10px;
    position: relative;
}

.news-scroll-content {
    animation: scrollNews 15s linear infinite;
}

.news-scroll-container:hover .news-scroll-content {
    animation-play-state: paused;
}

@keyframes scrollNews {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.news-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.news-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.news-scroll-container::-webkit-scrollbar-thumb {
    background: #d99f48;
    border-radius: 3px;
}

.news-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #b8862b;
}

.news-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.news-row:last-child {
    border-bottom: none;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-right: 25px;
    white-space: nowrap;
    font-family: monospace, sans-serif; /* Monospace for alignment */
}

.news-title {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    text-decoration: none;
}

.news-title:hover {
    text-decoration: underline;
    color: #d99f48;
}
}

/* Case Studies Section */
.case-studies {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 120px 0 !important;
    margin: 0;
    border-top: 5px solid #ffffff !important;
    border-bottom: 5px solid #ffffff !important;
    box-shadow: 0 15px 40px rgba(255,255,255,0.8) !important;
    color: #333 !important;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background: #ffffff;
    z-index: -1;
}

.case-studies::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -2;
    pointer-events: none;
}

.case-studies .white-background {
    background: #ffffff !important;
    background-color: #ffffff !important;
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.case-studies .container {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.95) !important;
}

.case-studies h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.case-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 1px solid #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,255,255,0.9) !important;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.case-img-placeholder {
    background-color: #f0f0f0;
    height: 150px;
    width: 100%;
    overflow: hidden;
}

.case-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card h3 {
    font-size: 0.9rem;
    font-weight: bold;
    margin: 15px;
    line-height: 1.4;
    min-height: 2.8em;
}

.case-card p {
    font-size: 0.8rem;
    color: #666;
    margin: 0 15px 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 0.7rem;
}

.case-tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 2px 6px;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.case-date {
    color: #999;
}

.case-button-container {
    text-align: center;
}

.btn-outline-wide {
    border: 2px solid #4a90e2;
    color: #4a90e2;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    max-width: 200px;
    width: 200px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.btn-outline-wide:hover {
    background-color: #4a90e2;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #FAFAF8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8e8e6" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e8e8e6" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23e8e8e6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .btn-blue {
    margin-top: 20px;
    min-width: 200px !important;
    max-width: 200px !important;
    width: 200px !important;
    background-color: #4273DB !important;
    color: #fff !important;
    border: 2px solid #4273DB !important;
}

.contact-section .btn-blue:hover {
    background-color: #3561C7 !important;
    color: #fff !important;
    border: 2px solid #3561C7 !important;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.contact-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.contact-box h3 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-box p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.phone-number {
    font-size: 2.5rem !important;
    font-weight: bold;
    color: #333 !important;
    margin-bottom: 10px !important;
}

.btn-yellow {
    background-color: #f4d03f;
    color: #333;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Default desktop navigation */
.main-nav {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none !important;
    }
    
    /* Mobile menu overlay when active */
    .main-nav.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 80% !important;
        height: 100vh !important;
        background-color: #fff !important;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        padding-top: 80px !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        padding: 0 20px !important;
    }
    
    .main-nav li {
        margin-bottom: 20px !important;
    }
    
    .main-nav a {
        font-size: 1.0rem !important;
        padding: 10px 0 !important;
        display: block !important;
    }
    
    .header-right {
        display: none !important;
    }
    
    /* Ensure mobile menu appears above all content */
    .main-nav.active {
        z-index: 9999 !important;
    }
    
    .mobile-menu-toggle {
        z-index: 10000 !important;
    }
    
    /* Vertical FAQ Button - Mobile */
    .vertical-faq-btn {
        width: 40px;
        height: 220px;
    }
    
    .vertical-faq-link {
        width: 40px;
        height: 220px;
        font-size: 11px;
        padding: 10px 0;
        letter-spacing: 1px;
    }
    
    /* Hero Section */
    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero .container {
        max-width: 100%;
        margin-bottom: 30px;
        padding-bottom: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image-section {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tags {
        flex-direction: column;
        gap: 8px;
    }
    
    .tags-row {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        margin: 0 auto 30px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* 响应式下的按钮样式保持一致 */
    .hero-buttons .btn-blue,
    .hero-buttons .btn-outline {
        min-width: 200px !important;
        max-width: 200px !important;
        width: 200px !important;
        padding: 19px 20px !important;
        font-size: 1rem !important;
        margin: 0 !important;
    }
    
    .btn-blue, .btn-outline, .btn-outline-wide {
        width: 100%;
        max-width: 250px;
    }
    
    .btn-long {
        min-width: 250px;
        max-width: 250px;
        width: 250px;
    }
    
    /* Specs Bar */
    .specs-bar-wrapper {
        animation: floatRightToLeft 20s linear infinite;
        transform: translateX(-25%);
    }
    
    .specs-bar .container {
        flex-direction: row;
        gap: 100px;
        padding: 0;
    }
    
    .spec-item {
        width: 100px;
        height: 100px;
    }
    
    /* 保持向上移动15像素 */
    .specs-bar {
        margin-top: -15px !important;
    }
    
    .spec-item img {
        width: 100px;
        height: 100px;
    }
    
    /* Reasons Section */
    .reasons-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Color Card Section */
    .color-card {
        padding: 60px 0 40px 0;
        background-color: #FAFAF8;
    }
    
    .color-card-content {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .man-graphic {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    
    /* Clear Pricing */
    .clear-pricing {
        padding: 100px 0;
        background-color: #FAFAF8;
    }
    
    .pricing-flex {
        flex-direction: column;
    }
    
    /* Support Section */
    .support {
        padding: 60px 0;
        background-color: #FAFAF8;
    }
    
    .support-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Steps Section */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .step-card {
        width: 200px;
        height: 210px;
        border-radius: 5px;
    }
    
    /* Lineup Section */
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .lineup-item {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 120px;
        padding: 15px;
        border-radius: 8px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .lineup-item img {
        width: auto;
        height: 80px;
        max-width: 120px;
        margin: 0 auto 15px;
        padding: 0;
        border-radius: 4px;
    }
    
    .lineup-item .item-content {
        padding: 0;
        text-align: center;
    }
    
    .lineup-item h5 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .lineup-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
    
    .learn-more-indicator {
        position: static;
        margin-top: 10px;
        transform: none;
        font-size: 1.8rem;
    }
    
    /* Price Comparison */
    .comparison-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-box {
        width: 100%;
        max-width: 400px;
    }
    
    /* News Section */
    .news-box {
        flex-direction: column;
        text-align: center;
    }
    
    .news-label-area {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .news-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Case Studies */
    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Section */
    .contact-grid {
        flex-direction: column;
        gap: 20px;
}
    
    .contact-box {
        width: 100%;
        max-width: 400px;
    }
    
    /* Footer */

.footer a {
    color: #404040 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
}
    .footer-top {
        flex-direction: column;
    }
    
    .footer-brand {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px 0 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .quantity {
        font-size: 1.2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-box {
        width: 100%;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .phone-number {
        font-size: 2rem !important;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero .container {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image-section {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reasons-grid {
        gap: 20px;
    }
    
    .color-card-content {
        gap: 30px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .man-graphic {
        width: 300px;
    }
    
    .pricing-flex {
        gap: 30px;
    }
    
    .steps-container {
        gap: 15px;
    }
    
    .step-card {
        width: 130px;
        height: 210px;
        border-radius: 5px;
    }
    
    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lineup-item {
        height: auto;
        min-height: 150px;
    }
    
    .comparison-container {
        gap: 20px;
    }
    
    .comparison-box {
        width: 280px;
    }
    
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-grid {
        gap: 20px;
}
    
    .contact-box {
        width: 350px;
        padding: 30px 20px;
    }
    
    /* 在小屏幕下保持向上移动15像素 */
    .specs-bar {
        margin-top: -15px !important;
    }
}

/* Additional Responsive Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .main-nav a,
    .btn-blue,
    .btn-outline,
    .btn-yellow,
    .btn-outline-wide {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .hero {
        padding: 40px 0 15px 0;
    }
    
    .reasons,
    .color-card,
    .clear-pricing,
    .support,
    .steps,
    .lineup,
    .price-comparison,
    .case-studies,
    .contact-section {
        padding: 60px 0;
    }
    
    /* 在中等屏幕下保持向上移动25像素 */
    .reasons {
        margin-top: -25px !important;
    }
    
    /* Improve text readability */
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .reason-card h3 {
        font-size: 1.1rem;
    }
    
    /* Better image sizing */
    .badge img {
        height: 50px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve form elements */
    .contact-box {
        padding: 30px 20px;
    }
    
    /* Better grid spacing */
    .specs-grid {
        gap: 10px;
    }
    
    .case-grid {
        gap: 20px;
    }
    
    /* Improve button spacing */
    .hero-buttons {
        gap: 15px;
    }
    
    /* Better navigation spacing */
    .main-nav li {
        margin-bottom: 15px;
    }
    
    /* Improve price comparison layout */
    .comparison-box {
        margin: 0 auto;
    }
    
    /* Better news layout */
    .news-row {
        padding: 10px 0;
    }
    
    .news-date {
        margin-right: 15px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-red,
    .logo-sub {
        font-weight: 600;
    }
    
    .btn-blue,
    .btn-outline,
    .btn-yellow,
    .btn-outline-wide {
        font-weight: 600;
    }
}

/* Landscape mode optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0 0 0;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .main-nav {
        padding-top: 60px;
    }
    
    .main-nav a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .mobile-menu-toggle,
    .hero-image,
    .man-graphic,
    .support-image {
        display: none;
    }
    
    .hero,
    .reasons,
    .color-card,
    .clear-pricing,
    .support,
    .steps,
    .lineup,
    .price-comparison,
    .case-studies,
    .contact-section {
        padding: 20px 0 0 0;
    }
    
    /* 在小屏幕下保持向上移动25像素 */
    .reasons {
        margin-top: -25px !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    /* Hero buttons for small screens */
    .hero-buttons {
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
    
    /* 小屏幕下的按钮样式 */
    .hero-buttons .btn-blue,
    .hero-buttons .btn-outline {
        min-width: 150px !important;
        max-width: 150px !important;
        width: 150px !important;
        padding: 17px 15px !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
    }
    
    /* Tags for small screens */
    .tags-row {
        gap: 6px;
        justify-content: center;
    }
    
    .tags span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    .btn-blue,
    .btn-outline,
    .btn-yellow,
    .btn-outline-wide,
    .case-card,
    .contact-box {
        transition: none;
    }
    
    .main-nav {
        transition: none;
    }
}

footer {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding-top: 60px;
}

.footer-top {
    display: flex;
    margin-bottom: 40px;
}

.footer-brand {
    width: 20%;
    padding-right: 40px;
    min-width: 150px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 10px !important;
    }
    
    .footer-logo img {
        max-width: 100%;
        height: auto;
        margin: 0 auto !important;
        max-height: 60px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: center;
        gap: 30px;
    }
    
    .footer-col {
        align-items: center;
    }
}

.footer-logo {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: bold;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}

.footer-logo img {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-desc {
    font-size: 0.8rem !important;
    color: #000 !important;
    margin-top: 2px !important;
    margin-bottom: 15px !important;
    line-height: 1.1 !important;
    padding: 0 !important;
}

.footer-brand p {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    background: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4a90e2;
    transform: translateY(-2px);
}

.footer-cert {
    font-size: 0.7rem;
    color: #999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 200px;
}

.footer-col a {
    font-size: 0.85rem !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer-legal a {
    color: #404040 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-bottom .footer-legal a {
    color: #404040 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
}

.footer-legal a:hover {
    color: #404040 !important;
}

.footer-legal a span {
    color: #404040 !important;
    font-size: 0.9rem !important;
}

.external-icon {
    font-size: 0.9em;
}

.copyright {
    color: #606060;
    font-size: 0.8rem;
}

.footer-copyright {
    text-align: center;
    padding: 10px 0 0 0;
}

/* Ultra-specific footer bottom link styles to ensure they take effect */
footer .footer-bottom .footer-legal a,
footer .footer-bottom .footer-legal a:link,
footer .footer-bottom .footer-legal a:visited {
    color: #404040 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-weight: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    text-align: center !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

footer .footer-bottom .footer-legal a:hover,
footer .footer-bottom .footer-legal a:active {
    color: #404040 !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

/* Footer main links with larger font size */
.footer-main-link {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    color: #000 !important;
    text-decoration: none !important;
}

.footer-main-link:hover {
    color: #4a90e2 !important;
}

/* Product List Page Styles */

/* Page Title Section */
.page-title-section {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Order Page Styles */
.order-section {
    padding: 30px 0;
    background: white;
}
.order-container {
    max-width:1800px;
    margin: 0 auto;
    padding: 0 20px;
}
.order-header {
    text-align: left;
    margin-bottom: 50px;
    margin-left: 0;
    padding-left: 0;
}
.order-title {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: left;
}
.order-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: left;
}
.order-form {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.form-section {
    margin-bottom: 40px;
}
.form-section-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    width: 100%;
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
}
.product-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    width: auto;
    flex-wrap: nowrap;
}
.product-category-tab {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}
.product-category-tab:hover {
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}
.product-category-tab:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}
.product-category-tab.active {
    background: #e3f2fd;
    color: #333 !important;
    border-color: #3498db;
    font-weight: 600;
    background-color: #e3f2fd;
    border-color: #3498db;
}
.product-category-content {
    width: 100%;
    max-width: 100%;
    margin-top: -30px;
}

.product-category-content h6 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.product-type-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.product-type-grid.usage-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 20px;
}
.product-type-grid.usage-grid .product-type-card {
    width: calc(50% - 10px);
    height: auto;
    min-height: 60px;
}
.product-type-grid.usage-grid .product-type-card.selected {
    border-color: #3498db;
    background: #e3f2fd;
}
.product-type-grid.usage-grid .product-type-card[data-category="card-type"] {
    width: 100%;
    height: 80px;
}
.product-type-grid h6 {
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
}
.product-type-card {
    background: #f8f9fa;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-type-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    height: 100%;
    flex: 1;
    align-items: flex-start !important;
    text-align: left !important;
}

.product-type-card .card-content h6 {
    text-align: left !important;
    margin-bottom: 5px;
    margin-top: 0;
    align-self: flex-start !important;
    font-weight: 600;
}

.product-type-card .card-content p {
    text-align: left !important;
    margin-bottom: 0;
    margin-top: 0;
    align-self: flex-start !important;
    line-height: 1.4;
}
.product-type-card:hover {
    border-color: #3498db;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.1);
}
.product-type-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}
.product-type-card.selected {
    border-color: #3498db;
    background: #e3f2fd;
}
.product-type-card h6 {
    color: #333;
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}
.product-type-card p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0;
}
.product-type-card .product-price {
    color: #3498db;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
    align-self: center;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 1.2;
    display: block;
    width: auto;
}
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}
.option-card {
    background: #f8f9fa;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover,
.option-card.active,
.option-card.selected {
    border: 0.8px solid #3498db;
    background: #e3f2fd;
}
.option-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}
.option-card h3 {
    color: #333;
    margin-bottom: 0;
    font-size: 1.2rem;
}
.option-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.option-price {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0;
    text-align: right;
}
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.checkbox-group label {
    color: #333;
    cursor: pointer;
    font-weight: 500;
}
.radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.radio-group input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.radio-group label {
    color: #333;
    cursor: pointer;
    font-weight: 500;
}
.quantity-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    width: 100%;
}
.quantity-selector input[type="number"] {
    width: 80px;
    text-align: center;
}
.quantity-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.quantity-btn:hover,
.quantity-btn.active {
    border-color: #3498db;
    background: #e3f2fd;
    color: #333;
}
.quantity-btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.quantity-btn h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.quantity-btn .option-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e74c3c;
    align-self: flex-end;
    text-align: right;
    width: 100%;
}

.quantity-btn.active .option-price {
    color: white;
}
.price-summary {
    background: #f0f8ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007acc;
    margin-bottom: 30px;
}
.price-summary h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}
.price-row.total {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
}
.submit-section {
    text-align: center;
    margin-top: 40px;
}
.btn-primary {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}
.btn-secondary {
    background: white;
    color: #3498db;
    padding: 8px 16px;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    /* margin-left: 15px; */
}
.btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}
.btn-secondary:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}
.hidden {
    display: none;
}
.option-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.option-card:hover {
    border-color: #3498db;
}
.option-card.active {
    border-color: #3498db;
    background: #e3f2fd;
}

/* Standard Services Section */
.standard-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.standard-services-section .container {
    max-width: 1400px;
}

.standard-services-section .section-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.standard-services-section .section-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.standard-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact-section {
    background-color: #f0f0f2;
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.contact-box h5 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.contact-box p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.phone-number {
    font-size: 2.5rem !important;
    font-weight: bold;
    color: #333 !important;
    margin-bottom: 10px !important;
    text-align: center;
}

.btn-blue {
    background-color: #4a90e2;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #4a90e2;
}

.btn-blue:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #357abd;
}

/* Breadcrumb Navigation */
.product-detail-breadcrumb {
    text-align: left;
    padding: 0 0 10px 20px;
    margin-top: -30px;
    font-size: 0.9rem;
    color: #666;
}

.product-detail-breadcrumb a {
    color: #4a90e2;
    text-decoration: none;
}

.product-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-breadcrumb span {
    color: #333;
    font-weight: 500;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #4a90e2;
    outline: none;
}

/* Products Grid */
.products-grid-section {
    padding: 60px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    border-radius: 4px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.spec {
    background: #f1f3f4;
    color: #555;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.tax {
    font-size: 0.9rem;
    color: #666;
}

.quantity {
    font-size: 0.9rem;
    color: #888;
    margin-left: auto;
}

.product-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.product-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

/* Ensure proper spacing between contact boxes */
.contact-section .contact-grid {
    gap: 100px !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* Override for tablet screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-section .contact-grid {
        gap: 60px !important;
    }
}

/* Override for mobile screens */
@media (max-width: 500px) {
    .contact-section .contact-grid {
        gap: 40px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.contact-box h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4273DB;
    margin-bottom: 10px;
}

.contact-box .btn-blue {
    background: #4273DB;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #4273DB;
}

.contact-box .btn-blue:hover {
    background: transparent;
    color: #4273DB;
    border-color: #4273DB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .quantity {
        margin-left: 0;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 40px 0 30px;
    }
    
    .products-grid-section {
        padding: 40px 0;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-box {
        padding: 25px 15px;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-box h5 {
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
    }
}

/* Product Detail Page Styles */

.product-detail-section {
    padding: 20px 0 60px 0;
    background: #ffffff;
}

.product-detail-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    margin-top: 0;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.product-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.product-detail-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 0;
    margin-top: 0;
}

.product-detail-breadcrumb a {
    color: #4a90e2;
    text-decoration: none;
}

.product-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-included-section {
    margin: 40px 0;
    text-align: center;
}

.product-included-title {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 40px;
}

.product-included-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-included-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.product-design-info {
    margin: 0;
    background: #f5f5f5;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.product-design-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.design-main-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 400px;
}

.design-text-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.design-text-left h2 {
    margin-bottom: 20px;
}

.design-text-left p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.design-text-left .additional-text {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.design-image-right {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-image-right img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
}

.design-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    margin: 40px 0 20px;
    padding: 15px 25px;
    background: #f0f4ff;
    border-left: 4px solid #4273DB;
    border-radius: 8px;
}

.faq-category h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 0.9rem !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4273DB;
    transition: transform 0.3s ease;
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.design-image-section img {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .product-included-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-design-content {
        padding: 30px 20px;
    }
    
    .design-main-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .design-text-left {
        text-align: center;
        align-self: center;
        padding-top: 0;
    }
    
    .design-image-right {
        margin-left: 0;
        text-align: center;
        margin-top: 50px;
    }
    
    .design-image-right img {
        margin: 0 auto;
    }
    
    .design-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 0.8rem !important;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
    
}

/* Terms of Service Page Styles */

.terms-main {
    padding: 40px 0;
    background: #f8f9fa;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a90e2;
    font-weight: 600;
}

.terms-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.terms-list {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.terms-effective {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.effective-date {
    font-size: 0.9rem;
    color: #666;
}

.effective-date p {
    margin: 5px 0;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-text p,
    .terms-list li {
        font-size: 0.9rem;
    }
    
    .terms-section {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
}

/* Privacy Policy Page Styles */

.privacy-main {
    padding: 40px 0;
    background: #f8f9fa;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a90e2;
    font-weight: 600;
}

.privacy-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #4a90e2;
}

.contact-info p {
    margin: 8px 0;
    line-height: 1.6;
}

.contact-info strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.privacy-effective {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-text p,
    .privacy-list li {
        font-size: 0.9rem;
    }
    
    .privacy-section {
        margin-bottom: 35px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .product-included-images {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Specific Commercial Transactions Page Styles */

.commercial-transactions-main {
    padding: 40px 0;
    background: #f8f9fa;
}

.commercial-transactions-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.info-item .note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.info-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.info-item ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.contact-info {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.contact-info p {
    margin: 8px 0;
    line-height: 1.6;
}

.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.legal-notice h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.notice-content p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.last-updated p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design for Commercial Transactions Page */
@media (max-width: 768px) {
    .commercial-transactions-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .info-item h3 {
        font-size: 1.1rem;
    }
    
    .info-item p,
    .info-item ul li {
        font-size: 0.9rem;
    }
    
    .legal-notice {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .commercial-transactions-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .legal-notice {
        padding: 15px;
    }
}

/* Data Submission Guidelines Page Styles */

.submission-main {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4eaf5);
    border-radius: 12px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.page-subtitle {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Quick Start Section */
.quick-start {
    margin-bottom: 80px;
}

.quick-start h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.quick-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
}

.quick-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-card ul {
    list-style: none;
    padding: 0;
}

.quick-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.quick-card li:last-child {
    border-bottom: none;
}

/* Guides Section */
.guides-section {
    margin-bottom: 80px;
}

.guides-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.guide-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.guide-header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.guide-difficulty {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.guide-steps {
    padding: 30px;
}

.step {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    background: #4a90e2;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technical Specifications */
.specs-section {
    margin-bottom: 80px;
}

.specs-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.spec-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    width: 40%;
}

.spec-table td {
    color: #555;
}

/* Notes Section */
.notes-section {
    margin-bottom: 80px;
}

.notes-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.note-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.note-card.warning {
    background: linear-gradient(135deg, #fff5f5, #ffecec);
    border-left: 5px solid #e74c3c;
}

.note-card.success {
    background: linear-gradient(135deg, #f0fff4, #e6ffed);
    border-left: 5px solid #27ae60;
}

.note-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #555;
}

.note-card li:last-child {
    border-bottom: none;
}

/* Templates Section */
.templates-section {
    margin-bottom: 80px;
}

.templates-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.template-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
}

.template-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.template-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.template-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-download {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
    transition: transform 0.3s ease;
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

/* Support Section */
.support-section {
    margin-bottom: 80px;
}

.support-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.support-option {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
}

.support-option h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.support-option p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cta-support {
    text-align: center;
}

.cta-support .btn-primary {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-support .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Responsive Design for Submission Guide */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .quick-start-grid,
    .specs-grid,
    .notes-grid,
    .templates-grid,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .guide-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem !important;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
    
    .quick-card,
    .spec-card,
    .note-card,
    .template-card,
    .support-option {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .quick-start h2,
    .guides-section h2,
    .specs-section h2,
    .notes-section h2,
    .templates-section h2,
    .faq-section h2,
    .support-section h2 {
        font-size: 1.6rem;
    }
    
    .guide-header h3 {
        font-size: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Company Information Page Styles */
.company-main {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-section {
    margin-bottom: 80px;
}

.company-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.company-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
}

/* Company Info Grid */
.company-info-grid {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: #4a90e2;
    font-size: 1rem;
}

.info-value {
    flex: 1;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 20px;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

/* History Timeline */
.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #4a90e2;
}

.history-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.history-year {
    flex: 0 0 120px;
    font-weight: 700;
    color: #4a90e2;
    font-size: 1.1rem;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-right: 30px;
    position: relative;
}

.history-year::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.history-content {
    flex: 1;
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    color: #333;
    line-height: 1.6;
}

/* Access Map */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.access-info h3 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.access-info p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed #ddd;
}

.map-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.map-content small {
    color: #999;
}

/* Quality Policy */
.quality-content {
    max-width: 800px;
    margin: 0 auto;
}

.quality-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #4a90e2;
}

.quality-item h3 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quality-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Lead */
.contact-lead {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-main {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .company-section {
        margin-bottom: 60px;
    }
    
    .company-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .company-info-grid {
        padding: 25px;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        flex: none;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .philosophy-item {
        padding: 30px 20px;
    }
    
    .history-timeline::before {
        left: 15px;
    }
    
    .history-item {
        flex-direction: column;
    }
    
    .history-year {
        flex: none;
        margin-right: 0;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .history-year::before {
        display: none;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-placeholder {
        min-height: 200px;
    }
    
    .contact-lead {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .company-info-grid {
        padding: 20px;
    }
    
    .philosophy-item {
        padding: 25px 15px;
    }
    
    .history-year {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .history-content {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .quality-item {
        padding: 20px;
    }
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    justify-content: center;
}

.product-detail-image {
    background: #fff;
    border-radius: 12px;
    padding: 60px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 700px;
}

.product-image-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #4a90e2;
}

.product-detail-info {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.product-detail-info .product-price {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.product-detail-info .product-features {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.product-detail-info .product-features .feature {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.product-actions .product-btn {
    flex: 1;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs th {
    width: 30%;
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.product-specs td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.product-description {
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.product-description h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-overview-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #333;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(187, 222, 251, 0.4);
}

.product-overview-card h3 {
    color: #1976d2;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-overview-card p {
    color: #424242;
    margin-bottom: 12px;
    line-height: 1.8;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.spec-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background: #e9ecef;
}

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.spec-value {
    color: #555;
    font-size: 1rem;
    text-align: right;
}

.product-options {
    margin-bottom: 60px;
}

.product-options h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.option-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.option-card:hover {
    border-color: #4a90e2;
}

.option-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.option-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.option-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.related-products {
    margin-bottom: 60px;
}

.related-products h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive Design for Product Detail Page */

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .product-specs table {
        display: block;
        overflow-x: auto;
    }

    .product-specs th {
        width: 150px;
    }
    
    .product-detail-image {
        padding: 20px;
    }
    
    .product-detail-info {
        padding: 20px;
    }
    
    .product-detail-image img {
        max-width: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Order Guide Page Styles */
.order-guide-hero {
    background-color: #FAFAF8;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.order-guide-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.order-guide-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.order-process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.order-process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.process-steps-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.process-step-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: #4273DB;
}

/* Step Header */
.process-step-header {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #333;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(66, 115, 219, 0.1);
    border-radius: 12px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #4273DB;
}

.step-number-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4273DB;
}

.process-step-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    text-align: left;
}

/* Step Content */
.process-step-content {
    padding: 30px;
}

.process-step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Process Features */
.process-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e8f2ff;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    color: #4273DB;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Note */
.process-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: #fff8f8;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    margin-top: 20px;
}

.note-icon {
    font-size: 1.2rem;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-text {
    color: #e74c3c;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-steps-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .process-step-header h3 {
        text-align: center;
    }
    
    .step-number-modern {
        min-width: 70px;
        padding: 12px;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-number-text {
        font-size: 1.3rem;
    }
}

.pricing-info-section {
    padding: 80px 0;
    background: white;
}

.pricing-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.pricing-note {
    background: #e8f2ff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    text-align: center;
}

.pricing-note h3 {
    color: #4273DB;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-factors h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.factor-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.factor-item h4 {
    color: #4273DB;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.payment-methods-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.payment-methods-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.payment-method {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #4273DB;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4273DB;
}

.payment-method h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.payment-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.payment-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.payment-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.payment-features li:before {
    content: "✓";
    color: #4273DB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bank-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.bank-info p {
    margin: 8px 0;
    color: #444;
    line-height: 1.6;
}

.bank-info strong {
    color: #333;
    font-weight: bold;
}

.payment-notes {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-notes h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
}

.payment-notes ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.payment-notes li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.payment-notes li:before {
    content: "•";
    color: #4273DB;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.payment-notes p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.design-support-section {
    padding: 80px 0;
    background: white;
}

.design-support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.design-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

.design-intro p {
    margin: 10px 0;
}

.design-support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.design-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #4273DB;
}

.design-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.design-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #4273DB;
}

.design-card-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Design Support Features */
.design-support-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-support-features li {
    position: relative;
    padding: 12px 0 12px 25px;
    color: #555;
    line-height: 1.6;
}

.design-support-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #4273DB;
    font-weight: bold;
}

.design-free {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
}

/* Design Process */
.design-process {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #4273DB;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    margin: 0 0 5px;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Design Info Note */
.design-info-note {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4273DB;
}

/* Design Notes */
.design-notes-card {
    background: #fff8f8;
    border-color: #ffe8e8;
}

.design-notes-card .design-card-header {
    border-bottom-color: #ffe8e8;
}

.design-notes-card .design-icon {
    color: #e74c3c;
}

.design-notes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.design-notes li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.design-notes li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.9rem;
}

.process-arrow {
    text-align: center;
    color: #4273DB;
    font-size: 1.2rem;
    margin: 5px 0;
}

.design-requirements {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: #eef4fd;
    border-color: #4273DB;
}

.requirement-icon {
    font-size: 1.5rem;
    color: #4273DB;
    flex-shrink: 0;
    margin-top: 2px;
}

.requirement-content h4,
.requirement-content h5 {
    margin: 0 0 5px;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

.requirement-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.delivery-info-section {
    padding: 80px 0;
    background: white;
}

.delivery-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.delivery-content {
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-time h3,
.delivery-area h3,
.delivery-method h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.timeline-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 9px solid #4273DB;
}

.timeline-item h4 {
    color: #4273DB;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.delivery-area,
.delivery-method {
    margin-bottom: 40px;
}

.requirements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

/* Modern Requirements Grid */
.requirements-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.requirement-card-modern {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: all 0.3s ease;
}

.requirement-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: #4273DB;
}

/* Card Header */
.requirement-card-header {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #333;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.requirement-icon {
    font-size: 2rem;
    color: #4273DB;
    flex-shrink: 0;
}

.requirement-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

/* Card Content */
.requirement-card-content {
    padding: 30px;
}

/* Requirement Note */
.requirement-note {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4273DB;
}

/* Requirements Features */
.requirement-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: #e8f2ff;
    transform: translateX(5px);
}

.feature-icon-modern {
    font-size: 1.2rem;
    color: #4273DB;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .requirements-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .requirement-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .requirement-card-header h3 {
        text-align: center;
    }
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3,
.support-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #4273DB;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
}

.contact-btn {
    display: inline-block;
    background: #4273DB;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #2a5298;
}

.support-info ul {
    list-style: none;
    padding: 0;
}

.support-info li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.support-info li:before {
    content: "✓";
    color: #4273DB;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4273DB 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: #4273DB;
}

.cta-btn.primary:hover {
    background: #f0f0f0;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #4273DB;
}

/* Responsive Design for Order Guide */
@media (max-width: 768px) {
    .order-guide-hero {
        padding: 60px 0;
    }
    
    .order-guide-hero h1 {
        font-size: 2rem;
    }
    
    .order-guide-hero p {
        font-size: 1rem;
    }
    
    .order-process-section,
    .pricing-info-section,
    .payment-methods-section,
    .delivery-info-section,
    .requirements-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .order-process-section h2,
    .pricing-info-section h2,
    .payment-methods-section h2,
    .delivery-info-section h2,
    .requirements-section h2,
    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .factors-grid,
    .payment-grid,
    .timeline,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
        text-align: center;
    }
}

/* Login Page Styles */
.login-main {
    padding: 80px 0;
    background-color: white;
    min-height: calc(100vh - 400px);
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.login-header {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.login-content {
    padding: 40px;
}

/* Login Form Section */
.login-form-section {
    margin-bottom: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.login-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #4a90e2;
    background: white;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.password-input-wrapper {
    position: relative;
}

.verification-input-wrapper {
    display: flex;
    gap: 10px;
}

.verification-input-wrapper input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.verification-input-wrapper input[type="text"]:focus {
    outline: none;
    border-color: #4a90e2;
    background: white;
}

.btn-get-code {
    padding: 12px 20px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
}

.btn-get-code:hover {
    background: #357abd;
}

.btn-get-code:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.7;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 1.2rem;
    color: #666;
}

.password-toggle:hover {
    color: #4a90e2;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.forgot-password {
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #357abd;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.form-footer a {
    color: #4a90e2;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Login Divider */
.login-divider {
    position: relative;
    text-align: center;
    margin: 40px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e1e1;
}

.login-divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

/* Registration Section */
.register-section {
    text-align: center;
}

.register-benefits {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.register-benefits h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-register {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-align: center;
    box-sizing: border-box;
}

.btn-register:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.guest-checkout {
    font-size: 0.85rem;
    color: #666;
}

.guest-checkout a {
    color: #4a90e2;
    text-decoration: none;
}

.guest-checkout a:hover {
    text-decoration: underline;
}

/* Alternative Login */
.alternative-login {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.alternative-login h3 {
    text-align: center;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px solid #e1e1e1;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #333;
}

.btn-social:hover {
    border-color: #4a90e2;
    transform: translateY(-1px);
}

.btn-google {
    border-color: #db4437;
    color: #db4437;
}

.btn-google:hover {
    background: #db4437;
    color: white;
}

.btn-line {
    border-color: #00c300;
    color: #00c300;
}

.btn-line:hover {
    background: #00c300;
    color: white;
}

.social-icon {
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Login Help */
.login-help {
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.login-help h3 {
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    display: flex;
    align-items: center;
    color: #856404;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #533f03;
}

.help-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-main {
        padding: 40px 0;
    }
    
    .login-wrapper {
        margin: 0 20px;
        max-width: none;
    }
    
    .login-header {
        padding: 30px 25px 15px;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .login-content {
        padding: 30px 25px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-login {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-social {
        flex: 1;
        min-width: 200px;
    }
    
    .help-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .help-link {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .login-content {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.2rem;
    }
    
    .form-group input[type="email"],
    .form-group input[type="password"] {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .btn-login {
        font-size: 1rem;
    }
    
    .register-benefits {
        padding: 20px;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .btn-social {
        min-width: auto;
    }
    
    .help-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .help-link {
        min-width: auto;
        justify-content: flex-start;
    }
}

/* User Menu Styles */
.user-menu {
    position: relative;
}

.user-avatar-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.user-avatar-btn:hover {
    background-color: rgba(74, 144, 226, 0.1);
}

.user-avatar-btn svg {
    width: 28px;
    height: 28px;
    color: #4a90e2;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 10px 0;
    z-index: 9999;
    display: none;
    margin-top: 8px;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.user-info {
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 8px;
}

.user-info .user-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin-bottom: 4px;
}

.user-info .user-email {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 8px 0;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #4a90e2;
}

#logoutBtn {
    color: #dc3545;
    cursor: pointer;
}

#logoutBtn:hover {
    background-color: #fff5f5;
    color: #c82333;
}

/* Responsive for user menu */
@media (max-width: 768px) {
    .user-dropdown {
        min-width: 180px;
        right: -10px;
    }
    
    .user-dropdown::before {
        right: 20px;
    }
}
