@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

html, body {
  overflow-x: hidden;
  font-family: 'Google Sans', sans-serif !important;
  margin: 0;
  padding: 0;
}


/* Header Styles */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  max-height: 50px;
}

/* Navigation */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #034185;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eee;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px 0;
  }

  .nav-menu ul li {
    text-align: center;
    padding: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: block;
  }
}

/* === HERO SECTION === */
.hero-section {
  background: linear-gradient(to right, #eaf1fc, #ffffff);
  padding: 40px 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 32px;
  color: #0069d9;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: 'Google Sans', sans-serif; /* fallback font first */
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  min-height: 60px;
  font-display: swap;
}


.version-info {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #034185;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}

.trusted-info {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #555;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trusted-info i {
  color: #28a745;
  margin-right: 5px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1 1 60%;
    padding-right: 10px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .download-btn {
    font-size: 14px;
    padding: 9px 18px;
  }

  .hero-image {
  flex: 1 1 100%;
  justify-content: center; /* ✅ center image on mobile */
  margin-top: 20px;
}


  .hero-image img {
    max-width: 180px;
    margin-top: 10px;
  }

  .trusted-info {
    font-size: 12px;
  }
}



.definition-section {
  background-color: #f9fafe;
  padding: 60px 20px;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  min-height: 240px;
  overflow-anchor: none;
}

.definition-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.definition-section h2 {
  font-size: 28px;
  color: #0069d9;
  margin-bottom: 20px;
}

.definition-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.features-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.features-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-section h2 {
  font-size: 28px;
  color: #0069d9;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #f8f9fa;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 32px;
  color: #034185;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.main-article {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Google Sans', sans-serif;
  color: #333;
  line-height: 1.8;
}

.main-article .container {
  font-family: 'Google Sans', sans-serif !important;
  max-width: 1000px;
  margin: 0 auto;
}

.main-article h1 {
  font-family: 'Google Sans', sans-serif !important;
  font-size: 32px;
  margin-bottom: 20px;
  color: #0069d9;
}

.main-article h2 {
  font-family: 'Google Sans', sans-serif !important;
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #034185;
}

.main-article h3 {
    font-family: 'Google Sans', sans-serif !important;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #333;
}

.main-article p {
  font-family: 'Google Sans', sans-serif !important;
  font-size: 16px;
  margin-bottom: 15px;
}

.main-article ul,
.main-article ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.main-article ul li,
.main-article ol li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-section {
  padding: 60px 20px;
  background-color: #f9f9fb;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 28px;
  color: #0069d9;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
}

.faq-question {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


/* Tables */
.info-table,
.comparison-table,
.feature-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 15px;
}

.info-table th,
.comparison-table th,
.feature-table th {
  background-color: #f1f5f9;
  color: #333;
  text-align: left;
  padding: 12px;
}

.info-table td,
.comparison-table td,
.feature-table td {
  border: 1px solid #e1e1e1;
  padding: 12px;
}

.comparison-table tbody tr:nth-child(even),
.feature-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table th,
.feature-table th {
  background-color: #034185;
  color: #fff;
}

.footer {
  background-color: #034185;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Google Sans', sans-serif;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer p {
  margin: 0 0 10px;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px; /* ✅ adds spacing between links */
  margin-top: 10px;
}

.footer-links a {
  color: #ffffff;
  padding: 10px 14px; /* ✅ increases clickable size */
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: color 0.3s ease;
  border-radius: 4px;
}

.footer-links a:hover {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    width: 100%;
    text-align: center;
    margin: 4px 0;
  }
}


#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #229ED9;
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #007bb6;
  transform: scale(1.1);
}





.page-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: #333;
  font-family: 'Google Sans', sans-serif;
  line-height: 1.6;
}

.page-section h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0069d9;
}

.page-section p {
  font-size: 16px;
  margin-bottom: 15px;
}

.page-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-section ul li {
  font-size: 16px;
  margin-bottom: 10px;
}




.page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: #f8f9fa;
  font-family: 'Google Sans', sans-serif;
}

.error-404 {
  width: 100%;
}

.error-container {
  background-color: #ffffff;
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.error-container h1 {
  font-size: 36px;
  color: #229ED9;
  margin-bottom: 15px;
}

.error-container p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.back-home-btn,
.back-btn {
  text-decoration: none;
  background-color: #229ED9;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.back-home-btn:hover,
.back-btn:hover {
  background-color: #007bb6;
}


.download-section {
  background: #f9f9fb;
  padding: 60px 20px;
  font-family: 'Google Sans', sans-serif;
}

.download-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.download-section h1 {
  font-size: 30px;
  color: #0069d9;
  margin-bottom: 20px;
}

.download-intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.download-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.download-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.download-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.download-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #034185;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #0056b3;
}

.note {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

