/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #dc2626;
    --accent-color: #f59e0b;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;
    
    /* Border & Shadows */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 8px 0;
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background: rgba(5, 150, 105, 0.1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 8px 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.search-box input {
    border: none;
    background: transparent;
    padding: 4px 8px;
    font-size: 14px;
    color: var(--text-primary);
    width: 200px;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.search-box button:hover {
    color: var(--primary-color);
}

.quote-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #1a365d;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #60a5fa;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-nav-btn {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn.active,
.hero-nav-btn:hover {
    background: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Product Showcase */
.product-showcase {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--accent-color);
    font-size: 14px;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.trust-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.trust-grid {
    display: grid;
    gap: 32px;
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.certifications {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.certifications h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-grid img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.cert-grid img:hover {
    filter: grayscale(0%);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.cta-feature i {
    color: var(--accent-color);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-date {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 12px 0;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more i {
    font-size: 12px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(2px);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section.company-info {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-section.company-info .footer-logo {
    margin-bottom: 0;
    height: 40px;
    width: auto;
}

.footer-section.company-info h4 {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.footer-section.company-info p {
    color: #d1d5db;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0 !important;
    color: #d1d5db;
}

.contact-info i {
    color: var(--primary-color);
    width: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.contact-methods {
    display: flex;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.contact-method:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d1d5db;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-section.company-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .exit-modal-header {
        padding: 1rem;
    }
    
    .exit-intent-form {
        padding: 1rem;
    }
    
    .product-card {
        margin: 0 -10px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f7fafc" width="1200" height="600"/><g opacity="0.1"><circle cx="200" cy="150" r="80" fill="%23718096"/><circle cx="400" cy="200" r="60" fill="%23718096"/><circle cx="600" cy="120" r="90" fill="%23718096"/><circle cx="800" cy="180" r="70" fill="%23718096"/><circle cx="1000" cy="140" r="85" fill="%23718096"/></g></svg>') center/cover;
    color: white;
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero .hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #fef2f2;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-hero .stat-item {
    text-align: left;
}

.about-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.about-hero .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
}

.image-stack {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.image-stack:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.125rem;
    font-weight: 600;
}

.floating-cards {
    position: absolute;
    right: -2rem;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-card {
    background: white;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    animation-delay: 2s;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.floating-card span {
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-timeline {
    margin-top: 4rem;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text {
    max-width: 500px;
}

.why-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.why-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.advantage-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.process-step {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
}

.process-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transform: rotate(90deg);
}

/* Certifications Section */
.certifications-showcase {
    padding: 100px 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.cert-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.cert-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.cert-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cert-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Lab & Innovation Section */
.lab-innovation {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lab-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.lab-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.lab-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lab-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lab-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.lab-feature h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.lab-feature p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 1rem;
}

.lab-visual {
    position: relative;
}

.lab-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lab-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.lab-stats {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
}

.lab-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Global Reach Section */
.global-reach {
    padding: 100px 0;
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.region-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.region-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.region-icon i {
    font-size: 1.5rem;
    color: white;
}

.region-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.region-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.region-highlight {
    font-size: 1.5rem;
    line-height: 1;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .floating-cards {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .why-content,
    .lab-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .process-arrow {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .values-grid,
    .regions-grid,
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .floating-card {
        padding: 0.75rem;
    }
    
    .floating-card span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .timeline-content,
    .value-card,
    .cert-card,
    .region-card {
        padding: 1.5rem;
    }
    
    .section-header h2,
    .why-text h2,
    .lab-text h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .main-image {
        height: 250px;
    }
} 

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.blog-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.blog-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 40px;
}

.blog-stats .stat-item {
    text-align: center;
}

.blog-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.blog-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Content Layout */
.blog-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-main {
    min-width: 0;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-of-contents h3 i {
    color: var(--primary-color);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: block;
}

.table-of-contents a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Blog Articles */
.blog-article {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 40px;
    transition: var(--transition);
}

.blog-article:hover {
    box-shadow: var(--shadow-lg);
}

.article-header {
    padding: 32px 40px 24px;
    border-bottom: 1px solid var(--border-light);
}

.article-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.article-header h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 24px;
    color: var(--text-light);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 40px;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.article-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Content Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.content-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.content-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.content-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.content-card h4 i {
    color: var(--primary-color);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.content-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

/* Specification Table */
.spec-table {
    margin: 32px 0;
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.spec-table th,
.spec-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.spec-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-table td {
    color: var(--text-secondary);
}

.spec-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* Material Comparison */
.material-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.material-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.material-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.material-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.material-card h4 i {
    color: var(--primary-color);
}

.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pros h5,
.cons h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pros h5 {
    color: #10b981;
}

.cons h5 {
    color: #f59e0b;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.pros li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-top: 2px;
}

.cons li::before {
    content: '⚠';
    color: #f59e0b;
    font-weight: bold;
    margin-top: 2px;
}

/* Valve Guide */
.valve-guide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.valve-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    transition: var(--transition);
}

.valve-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.valve-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.valve-info p {
    color: var(--text-secondary);
    margin: 0;
}

/* Size Guide */
.size-guide {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.size-category {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.size-category h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.size-category h4 i {
    color: var(--primary-color);
}

.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* Bicycle Valves */
.bicycle-valves {
    margin: 32px 0;
}

.valve-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.valve-type {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.valve-type:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.valve-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
}

.valve-type h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.valve-type p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Maintenance Grid */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.maintenance-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.maintenance-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.maintenance-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.maintenance-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

/* Related Products */
.related-products {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-item:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.related-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.item-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* Sidebar Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
}

/* Blog Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-grid,
    .material-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-stats {
        gap: 2rem;
    }
    
    .article-header {
        padding: 24px 20px 16px;
    }
    
    .article-content {
        padding: 24px 20px;
    }
    
    .article-header h2 {
        font-size: 1.75rem;
    }
    
    .valve-comparison,
    .maintenance-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .spec-table {
        font-size: 14px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.75rem;
    }
    
    .blog-stats {
        gap: 1.5rem;
    }
    
    .blog-stats .stat-number {
        font-size: 2rem;
    }
    
    .article-header {
        padding: 20px 16px 12px;
    }
    
    .article-content {
        padding: 20px 16px;
    }
    
    .table-of-contents,
    .sidebar-widget {
        padding: 16px;
    }
    
    .maintenance-grid,
    .valve-comparison {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::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="contact-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-stats .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.contact-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Information Section */
.contact-information {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-main-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border-light);
}

.card-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details {
    padding: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.detail-content p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.detail-content a:hover {
    text-decoration: underline;
}

.detail-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.hours-item span:first-child {
    color: var(--text-secondary);
}

.hours-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Quick Contact Card */
.quick-contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.quick-contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.quick-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.quick-contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.quick-contact-item.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.quick-contact-item.wechat:hover {
    border-color: #7bb32e;
    box-shadow: 0 4px 20px rgba(123, 179, 46, 0.2);
}

.quick-contact-item.phone:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2);
}

.quick-contact-item.email:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.quick-contact-item.whatsapp .contact-icon {
    background: #25d366;
}

.quick-contact-item.wechat .contact-icon {
    background: #7bb32e;
}

.quick-contact-item.phone .contact-icon {
    background: var(--primary-color);
}

.quick-contact-item.email .contact-icon {
    background: #3b82f6;
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 4px;
}

.status {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.status.online {
    background: #10b981;
    color: white;
}

.status:not(.online) {
    background: var(--bg-secondary);
    color: var(--text-light);
}

.quick-contact-item > i:last-child {
    color: var(--text-light);
    margin-left: auto;
    flex-shrink: 0;
}

/* Social Media Section */
.social-media-section {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.social-media-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-link.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-link.linkedin:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.social-link.instagram:hover {
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

/* Contact Form & Map Section */
.contact-form-map {
    padding: 80px 0;
    background: white;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: white;
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-top: -8px;
}

.form-note i {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.map-header p {
    color: var(--text-secondary);
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.location-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.location-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.emergency-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.emergency-info p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.emergency-methods {
    display: flex;
    gap: 20px;
}

.emergency-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.emergency-method:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.emergency-method i {
    font-size: 24px;
}

.emergency-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.emergency-method p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Contact Page Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-contact-card {
        position: static;
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-stats {
        gap: 2rem;
    }
    
    .contact-stats .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .card-header,
    .contact-details,
    .quick-contact-card {
        padding: 24px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .emergency-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-stats {
        gap: 1.5rem;
    }
    
    .contact-stats .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .card-header,
    .contact-details,
    .quick-contact-card {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
         .faq-answer p {
         padding: 0 20px 20px;
     }
 }

/* Sitemap Page Styles */
.sitemap-hero {
    background: linear-gradient(135deg, #374151 0%, #1f2937 50%, #111827 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sitemap-hero::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="sitemap-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23sitemap-grid)"/></svg>');
    opacity: 0.3;
}

.sitemap-hero .container {
    position: relative;
    z-index: 2;
}

.sitemap-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sitemap-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sitemap Content */
.sitemap-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.sitemap-section {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.sitemap-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.section-header {
    padding: 32px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.sitemap-links {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.sitemap-link:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}

.sitemap-link.active {
    border-color: var(--primary-color);
    background: rgba(5, 150, 105, 0.05);
}

.sitemap-link.external::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23059669" stroke-width="2"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15,3 21,3 21,9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>') no-repeat center;
    background-size: contain;
}

.link-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sitemap-link:hover .link-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.link-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.link-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.link-url {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Sitemap Summary */
.sitemap-summary {
    display: flex;
    justify-content: center;
}

.summary-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    text-align: center;
    max-width: 800px;
}

.summary-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.summary-stats .stat-item {
    text-align: center;
}

.summary-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.summary-stats .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.summary-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Sitemap Responsive Design */
@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sitemap-hero h1 {
        font-size: 2.5rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sitemap-hero {
        padding: 80px 0 60px;
    }
    
    .sitemap-hero h1 {
        font-size: 2rem;
    }
    
    .section-header {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .sitemap-links {
        padding: 20px 24px 24px;
    }
    
    .summary-card {
        padding: 24px;
    }
    
    .summary-card h3 {
        font-size: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sitemap-hero h1 {
        font-size: 1.75rem;
    }
    
    .sitemap-link {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .link-content h3 {
        font-size: 0.9rem;
    }
    
    .link-content p {
        font-size: 13px;
    }
    
         .summary-stats .stat-number {
         font-size: 2rem;
     }
 }

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 50%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::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="privacy-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-grid)"/></svg>');
    opacity: 0.3;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
}

/* Table of Contents */
.privacy-toc {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.toc-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    text-align: center;
}

.toc-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    text-align: left;
}

.toc-item:hover {
    border-color: var(--primary-color);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
}

.toc-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.toc-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.privacy-main {
    min-width: 0;
}

.privacy-section {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.privacy-section h2 {
    background: linear-gradient(135deg, #4c1d95, #6b21a8);
    color: white;
    padding: 24px 32px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

.section-content {
    padding: 32px;
}

.section-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.section-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 12px;
}

.section-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.section-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section-content li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Compliance Badges */
.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-primary);
}

.compliance-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Important Notice */
.important-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.important-notice h4 {
    color: #92400e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.important-notice p {
    color: #92400e;
    margin: 0;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.data-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.data-category:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.data-category h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.data-category ul {
    list-style: none;
    padding: 0;
}

.data-category li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.data-category li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
}

/* Auto Collected Data */
.auto-collected {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.auto-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.auto-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.auto-item p {
    font-size: 14px;
    margin: 0;
}

/* Usage Purposes */
.usage-purposes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.purpose-item {
    display: flex;
    gap: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.purpose-content h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.purpose-content ul {
    margin: 0;
    padding-left: 16px;
}

/* Legal Basis Grid */
.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.legal-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.legal-item:hover {
    box-shadow: var(--shadow-md);
}

.legal-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Sharing Categories */
.sharing-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.sharing-item {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.sharing-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* No Sale Notice */
.no-sale-notice {
    background: #dcfce7;
    border: 1px solid #16a34a;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.no-sale-notice h4 {
    color: #15803d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.no-sale-notice p {
    color: #15803d;
    margin: 0;
}

/* Transfer Safeguards */
.transfer-safeguards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.safeguard-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.safeguard-item h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Transfer Notice */
.transfer-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.transfer-notice h4 {
    color: #92400e;
    margin-bottom: 8px;
}

.transfer-notice p {
    color: #92400e;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.right-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.right-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.right-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.right-item p {
    font-size: 14px;
    margin: 0;
}

/* Exercise Rights */
.exercise-rights {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.exercise-rights h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Regional Sections */
.regional-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 24px 0;
}

.regional-section {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.regional-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.regional-section ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

.regional-section li {
    margin-bottom: 8px;
}

.regional-section strong {
    color: var(--text-primary);
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.cookie-type {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Cookie Management */
.cookie-management {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
    text-align: center;
}

.cookie-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.security-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.security-item:hover {
    box-shadow: var(--shadow-md);
}

.security-item h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Breach Notice */
.breach-notice {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.breach-notice h4 {
    color: #dc2626;
    margin-bottom: 8px;
}

.breach-notice p {
    color: #dc2626;
    margin: 0;
}

/* Retention Periods */
.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.retention-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
}

.retention-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.retention-item p {
    font-size: 14px;
    margin: 0;
}

/* Retention Notice */
.retention-notice {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.contact-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Response Time */
.response-time {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.response-time h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Supervisory Authorities */
.supervisory-authorities {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.supervisory-authorities h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.supervisory-authorities ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

.supervisory-authorities strong {
    color: var(--text-primary);
}

/* Update Notice */
.update-notice {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.update-notice h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Privacy Sidebar */
.privacy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-secondary);
}

.quick-link:hover {
    border-color: var(--primary-color);
    background: rgba(124, 58, 237, 0.05);
    color: var(--primary-color);
}

.quick-link i {
    color: var(--primary-color);
}

/* Protection Badges */
.protection-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.protection-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 14px;
}

.protection-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Related Docs */
.related-docs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-secondary);
}

.doc-link:hover {
    border-color: var(--primary-color);
    background: rgba(124, 58, 237, 0.05);
    color: var(--primary-color);
}

.doc-link i {
    color: var(--primary-color);
}

/* Privacy Policy Responsive Design */
@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-sidebar {
        order: -1;
        position: static;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .toc-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .data-categories,
    .legal-basis-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0 60px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .toc-card {
        padding: 24px;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-section h2 {
        padding: 20px 24px;
        font-size: 1.5rem;
    }
    
    .section-content {
        padding: 24px;
    }
    
    .purpose-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 1.75rem;
    }
    
    .compliance-badges,
    .auto-collected,
    .transfer-safeguards,
    .cookie-types,
    .security-measures,
    .retention-periods {
        grid-template-columns: 1fr;
    }
    
    .toc-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .privacy-section h2 {
        padding: 16px 20px;
        font-size: 1.25rem;
    }
    
         .section-content {
         padding: 20px;
     }
 }

/* Terms of Service Page Styles */
.terms-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.terms-hero::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="terms-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-grid)"/></svg>');
    opacity: 0.3;
}

.terms-hero .container {
    position: relative;
    z-index: 2;
}

.terms-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.terms-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Terms Content */
.terms-content {
    padding: 80px 0;
    background: white;
}

.terms-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.terms-main {
    min-width: 0;
}

.terms-section {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.terms-section h2 {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 24px 32px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

.terms-toc {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.terms-section .section-content h3 {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

.terms-section .section-content h4 {
    color: #1e40af;
}

/* Terms specific components using blue theme */
.terms-badges .compliance-badge i,
.terms-categories .data-category h4,
.terms-purposes .purpose-icon,
.terms-grid .legal-item h4,
.terms-sharing .sharing-item h4,
.terms-safeguards .safeguard-item h4,
.terms-rights .right-icon,
.terms-types .cookie-type h4,
.terms-measures .security-item h4,
.terms-periods .retention-item h4,
.terms-contact .contact-card h4 {
    color: #1e40af;
}

.terms-purposes .purpose-icon,
.terms-rights .right-icon {
    background: #1e40af;
}

.terms-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.terms-notice {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.terms-notice h4 {
    color: #1e40af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-notice p {
    color: #1e40af;
    margin: 0;
}

.terms-warning {
    background: #fef2f2;
    border: 1px solid #ef4444;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
}

.terms-warning h4 {
    color: #dc2626;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-warning p {
    color: #dc2626;
    margin: 0;
}

.terms-highlight {
    background: #f0f9ff;
    border-left: 4px solid #1e40af;
    padding: 20px;
    margin: 24px 0;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.terms-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.terms-item:hover {
    box-shadow: var(--shadow-md);
    border-color: #1e40af;
}

.terms-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
    margin-bottom: 12px;
}

.terms-item i {
    color: #1e40af;
}

/* Terms Responsive Design */
@media (max-width: 1024px) {
    .terms-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .terms-sidebar {
        order: -1;
        position: static;
    }
    
    .terms-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 80px 0 60px;
    }
    
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-section h2 {
        padding: 20px 24px;
        font-size: 1.5rem;
    }
    
    .section-content {
        padding: 24px;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 1.75rem;
    }
    
    .terms-section h2 {
        padding: 16px 20px;
        font-size: 1.25rem;
    }
    
    .section-content {
        padding: 20px;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.modal-overlay.hidden {
    display: none;
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal {
        width: 95%;
        padding: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.form-actions button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

/* 基础样式 */
.hidden {
    display: none !important;
}

/* Quick Quote Form */
.quick-quote-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.quick-quote-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.quick-quote-form .form-group {
    margin-bottom: 24px;
}

.quick-quote-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.quick-quote-form .required {
    color: var(--secondary-color);
    margin-left: 4px;
}

.input-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.input-shadow:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.quick-quote-form input,
.quick-quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #ffffff;
}

.quick-quote-form input:focus,
.quick-quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.quick-quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quick-quote-form .btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.quick-quote-form .btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.quick-quote-form .btn-full i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .quick-quote-section {
        padding: 60px 0;
    }
    
    .quick-quote-form {
        padding: 30px 20px;
        margin: 30px 15px;
    }
}