/* MeCust Website Styles */
:root {
  --primary: #ff6600;
  --primary-dark: #e55a00;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius: 8px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
}

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

/* Navigation */
.navbar {
  background: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.language-selector {
  display: flex;
  gap: 10px;
}

.language-selector a {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  border: 1px solid #ddd;
  transition: all 0.2s;
}

.language-selector a:hover,
.language-selector a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}

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

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

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

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

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-white);
}

.features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

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

.feature-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

/* Policies Section */
.policies {
  padding: 80px 0;
  background: var(--bg-light);
}

.policies h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.policy-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.policy-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.policy-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.policy-card .btn {
  padding: 10px 25px;
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* Policy Page Styles */
.policy-page {
  padding-top: 100px;
  min-height: 100vh;
}

.policy-page .container {
  max-width: 800px;
}

.policy-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.policy-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}

.policy-nav a:hover,
.policy-nav a.active {
  background: var(--primary);
  color: white;
}

.policy-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-content h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.policy-content .subtitle {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 14px;
}

.policy-content h2 {
  color: var(--text-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
}

.policy-content p {
  margin-bottom: 15px;
  color: #555;
}

.policy-content ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
  color: #555;
}

.policy-content .highlight {
  background: #fff3e0;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  border-left: 4px solid var(--primary);
}

.policy-content .highlight p {
  margin-bottom: 0;
  color: #333;
}

.policy-content .warning {
  background: #fff3e0;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  border-left: 4px solid #ff9800;
}

.policy-content .warning p {
  margin-bottom: 0;
  color: #e65100;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .policy-nav {
    flex-wrap: wrap;
  }
  
  .policy-content {
    padding: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
