/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), #6a5acd);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Section */
.faq {
  margin: 3rem auto;
  max-width: 800px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.faq h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--dark);
  margin: 0 0 0.5rem;
}

.faq-item p {
  margin: 0;
  color: #555;
}

/* Footer Links */
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}
/* Font & Colors */
:root {
  --primary: #4a6bff;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --accent: #ff6b6b;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light);
  color: var(--dark);
}

/* Header */
header {
  background: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  height: 40px;
}

.logo-container h1 {
  font-size: 1.5rem;
  margin: 0;
}

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

.hamb urger-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Sidebar */
.side bar {
  position: fixed;
  top: 0;
  left: -360px;
  width: 200px;
  height: 100vh;
  background: white;
  box-shadow: var(--shadow);
  transition: left 0.3s ease;
  z-index: 1000;
}

.sideba r.active {
  left: 0;
}

.sid ebar ul {
  list-style: none;
  padding: 1rem;
}

.sideb ar li {
  margin: 1rem 0;
}

.sideb ar a {
  text-decoration: none;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.2s;
}

.sideb ar a:hover {
  background: #f0f0f0;
}

/* Main Content */
main {
  padding: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
}

main h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tool-card h3 {
  margin: 0.5rem 0;
  color: var(--dark);
}

.tool-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tool-card {
  animation: fadeIn 0.5s ease forwards;
}

/* Privacy Policy Specific Styles */
.privacy-policy {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.policy-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.last-updated {
  color: var(--text-secondary);
  font-style: italic;
}

.policy-section {
  margin-bottom: 3rem;
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.policy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-table {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  margin: 1rem 0;
}

.info-row {
  display: contents;
}

.info-label {
  font-weight: bold;
  padding: 0.5rem;
}

.info-detail {
  padding: 0.5rem;
}

.feature-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.feature-card, .service-card {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.service-logo {
  max-height: 40px;
  margin-bottom: 0.5rem;
}

.compliance-badges {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.badge {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.contact-methods {
  margin: 1rem 0;
}

.contact-methods p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.update-history {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}
/* Terms Page Specific Styles */
.terms-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.terms-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
}

.terms-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.effective-date {
  color: var(--text-secondary);
  font-style: italic;
}

.terms-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

.terms-summary {
  position: sticky;
  top: 1rem;
  align-self: start;
}

.summary-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.key-points {
  list-style: none;
  padding: 0;
}

.key-points li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-points i {
  color: var(--primary-color);
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-nav a {
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.terms-nav a:hover {
  background: var(--primary-light);
  color: var(--primary-color);
}

.terms-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-box {
  background: #fff8e1;
  padding: 1rem;
  border-left: 4px solid #ffc107;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.notice-box i {
  color: #ffa000;
  font-size: 1.5rem;
}

.feature-list, .restriction-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li, .restriction-list li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list i {
  color: #4caf50;
}

.restriction-list i {
  color: #f44336;
}

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.prohibited-item {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: var(--bg-color);
}

.prohibited-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.prohibited-icon.red {
  background: #ffebee;
  color: #f44336;
}

.prohibited-icon.orange {
  background: #fff3e0;
  color: #ff9800;
}

.prohibited-icon.purple {
  background: #f3e5f5;
  color: #9c27b0;
}

.disclaimer-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.disclaimer-level {
  padding: 1rem;
  border-radius: 8px;
}

.disclaimer-level.high {
  background: #ffebee;
  border-left: 4px solid #f44336;
}

.disclaimer-level.medium {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
}

.disclaimer-level.low {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
}

.liability-scale {
  margin: 2rem 0;
}

.scale-bar {
  height: 10px;
  background: linear-gradient(to right, #4caf50, #ffc107, #f44336);
  border-radius: 5px;
  position: relative;
}

.scale-marker {
  position: absolute;
  left: 10%;
  top: -5px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.jurisdiction-map {
  background: #e3f2fd;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  position: relative;
  min-height: 100px;
}

.map-marker {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.map-marker i {
  font-size: 2rem;
  color: var(--primary-color);
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }
  
  .terms-summary {
    position: static;
  }
}
 :root {
      --primary: #2b579a;
      --primary-dark: #1e3f6f;
      --secondary: #4CAF50;
      --light: #f5f7fa;
      --dark: #333333;
      --gray: #777777;
      --light-gray: #eeeeee;
      --white: #ffffff;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --border-radius: 8px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #f9f9f9;
      color: var(--dark);
      line-height: 1.6;
    }

    header {
      background-color: var(--white);
      padding: 1rem 2rem;
      box-shadow: var(--shadow);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo-container img {
      height: 40px;
    }

    .logo-container h1 {
      font-size: 1.5rem;
      color: var(--dark);
    }

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

    .hambu rger-menu {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      display: none;
    }

    .sid ebar {
      width: 250px;
      background-color: var(--white);
      position: fixed;
      top: 70px;
      left: 0;
      height: calc(100vh - 70px);
      box-shadow: var(--shadow);
      padding: 1rem 0;
      transition: all 0.3s ease;
      z-index: 900;
    }

    .s idebar ul {
      list-style: none;
    }

    .side bar li a {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.8rem 1.5rem;
      color: var(--dark);
      text-decoration: none;
      transition: all 0.2s;
    }

    .sid ebar li a:hover {
      background-color: var(--light);
      color: var(--primary);
    }

    .sid ebar li a.active {
      background-color: rgba(43, 87, 154, 0.1);
      color: var(--primary);
      border-left: 4px solid var(--primary);
    }

    .sid ebar li a i {
      width: 20px;
      text-align: center;
    }

    .main-content {
      margin-top: 70px;
      margin-left: 250px;
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .privacy-container {
      max-width: 900px;
      margin: 0 auto;
      background: var(--white);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    .privacy-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .privacy-header h1 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .privacy-header p {
      color: var(--gray);
    }

    .privacy-section {
      margin-bottom: 2rem;
    }

    .privacy-section h2 {
      color: var(--primary);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--light-gray);
    }

    .privacy-section p, .privacy-section ul {
      margin-bottom: 1rem;
      color: var(--dark);
    }

    .privacy-section ul {
      padding-left: 2rem;
    }

    .privacy-section li {
      margin-bottom: 0.5rem;
    }

    .highlight {
      background-color: rgba(43, 87, 154, 0.1);
      padding: 1rem;
      border-left: 4px solid var(--primary);
      border-radius: var(--border-radius);
      margin: 1rem 0;
    }

    footer {
      background-color: var(--dark);
      color: var(--white);
      padding: 2rem;
      margin-left: 250px;
      transition: all 0.3s ease;
    }

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

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1rem;
    }

    .footer-links a {
      color: var(--white);
      text-decoration: none;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .sideb ar-overlay {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 800;
      display: none;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .hamburger-menu {
        display: block;
      }

      .sidebar {
        left: -250px;
      }

      .sidebar.active {
        left: 0;
      }

      .main-content {
        margin-left: 0;
      }

      footer {
        margin-left: 0;
      }

      .sid ebar-overlay {
        display: none;
      }

      .sideb ar.active + .sidebar-overlay {
        display: block;
      }
    }

    @media (max-width: 480px) {
      .privacy-container {
        padding: 1.5rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 0.5rem;
      }
    }
.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(7) { animation-delay: 0.7s; }
.tool-card:nth-child(8) { animation-delay: 0.8s; }