/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #f5faff, #e8f0ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Top Logo */
.logo-top {
  margin-bottom: 30px;
  text-align: center;
}

.logo-top h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.logo-top .highlight {
  color: #007bff;
}

/* Card container */
.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 900px;
  width: 100%;
  margin-bottom: 40px;
}

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

/* Text content */
.text-section {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.logo-inline {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.download-count {
  font-size: 0.9rem;
  color: #444;
  margin-top: 15px;
}

.note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 20px;
}

/* Download button */
.download-button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Example image */
.image-section {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.example-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* How to Use section */
.how-to-use {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 900px;
  width: 100%;
  margin-bottom: 40px;
}

.how-to-use h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 40px;
  color: #222;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.step-left {
  flex-direction: row;
}

.step-right {
  flex-direction: row-reverse;
}

.step-image {
  width: 200px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-text {
  flex: 1;
  min-width: 220px;
}

.step h3 {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 8px;
}

.step p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .step {
    flex-direction: column !important;
    text-align: center;
  }

  .step-image {
    margin-bottom: 20px;
  }
}

/* Decorative emblem styling */
.emblem-inline {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  opacity: 0.7;
}


