/* ========== DOWNLOAD PAGE - STYLES ========== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
  background: #f8f9fc;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.logo span {
  color: #2563eb;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Download Box */
.download-box {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

.download-box h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: background 0.3s;
  text-decoration: none;
}

.download-btn:hover {
  background: #1d4ed8;
}

/* Enhanced Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px auto;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #e0f2ff;
}

.feature-icon {
  font-size: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
}

.feature-text strong {
  color: #1e40af;
  display: block;
  margin-bottom: 4px;
}

.feature-text p {
  color: #4b5563;
  margin: 0;
  font-size: 0.95rem;
}

/* Video Section */
.video-section {
  margin: 60px auto 40px;
  text-align: center;
}

.video-section .section-title {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.video-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: #4b5563;
}

.video-container {
  position: relative;
  padding: 0 15px;
}

.video-container iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: none;
}

.video-tip {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Back Button - Just Above Footer */
.back-button-container {
  text-align: center;
  margin: 60px auto 30px;
}

.back-button {
  display: inline-block;
  background: #4b5563;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.3s;
}

.back-button:hover {
  background: #374151;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  color: #6b7280;
  font-size: 0.9rem;
  background: #f3f4f6;
}

.disclaimer {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 0.85rem;
  color: #6c757d;
  border-top: 1px solid #eee;
  padding-top: 20px;
}




.logo {
  text-decoration: none;      /* Removes the underline */
  color: inherit;             /* Keeps the original text color */
  font-size: inherit;         /* Keeps font size consistent */
  font-family: inherit;       /* Optional: keeps font consistent */
}