/* style/index.css */

/* Base styles for the page content */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index__btn--primary {
  background-color: #007bff;
  color: #fff;
}

.page-index__btn--primary:hover {
  background-color: #0056b3;
}

.page-index__btn--secondary {
  background-color: #ffc107;
  color: #333;
}

.page-index__btn--secondary:hover {
  background-color: #e0a800;
}

.page-index__btn--text {
  color: #007bff;
  text-decoration: underline;
  padding: 0;
  background: none;
}

.page-index__btn--text:hover {
  color: #0056b3;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-index__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index__hero-image-wrapper {
  max-width: 700px;
  margin-top: 40px;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.page-index__about-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-index__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #555;
}

.page-index__image-wrapper {
  text-align: center;
}

.page-index__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-index__features-section {
  padding: 80px 0;
  background-color: #f1f7fe;
}

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

.page-index__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__feature-card:hover {
  transform: translateY(-10px);
}

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index__feature-description {
  font-size: 1em;
  color: #666;
}

/* CTA Download Section */
.page-index__cta-download-section {
  background: linear-gradient(90deg, #ffc107 0%, #ffa000 100%);
  padding: 60px 0;
  color: #333;
  text-align: center;
}

.page-index__cta-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-index__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #333;
}

.page-index__cta-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-index__qr-code {
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Content List Section */
.page-index__content-list-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-index__article-card:hover {
  transform: translateY(-10px);
}

.page-index__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index__article-title {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  color: #007bff;
}

.page-index__article-title a {
  color: inherit;
  text-decoration: none;
}

.page-index__article-title a:hover {
  text-decoration: underline;
}

.page-index__article-excerpt {
  font-size: 0.95em;
  color: #666;
  margin: 0 20px 20px;
}

/* Contact Section */
.page-index__contact-section {
  padding: 80px 0;
  background-color: #f1f7fe;
  text-align: center;
}

.page-index__contact-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}

/* SEO Content Section */
.page-index__seo-content {
  padding: 60px 0;
  background-color: #fff;
}

.page-index__seo-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
}

.page-index__seo-subtitle {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index__seo-content p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #444;
}

.page-index__seo-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-index__seo-content li {
  margin-bottom: 8px;
  font-size: 1.05em;
  color: #444;
}

.page-index__keyword {
  color: #0056b3;
  font-weight: bold;
}

.page-index__seo-content a {
  color: #007bff;
  text-decoration: underline;
}

.page-index__seo-content a:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }

  .page-index__hero-description {
    font-size: 1.1em;
  }

  .page-index__grid-2-cols {
    grid-template-columns: 1fr;
  }

  .page-index__features-grid,
  .page-index__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2em;
  }

  .page-index__hero-section {
    padding: 60px 0;
  }

  .page-index__hero-title {
    font-size: 2.2em;
  }

  .page-index__hero-description {
    font-size: 1em;
  }

  .page-index__hero-actions {
    flex-direction: column;
  }

  .page-index__about-section,
  .page-index__features-section,
  .page-index__cta-download-section,
  .page-index__content-list-section,
  .page-index__contact-section,
  .page-index__seo-content {
    padding: 60px 0;
  }

  .page-index__cta-title {
    font-size: 1.8em;
  }

  .page-index__cta-description {
    font-size: 1em;
  }

  .page-index__qr-code {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__hero-title {
    font-size: 1.8em;
  }

  .page-index__hero-description {
    font-size: 0.9em;
  }

  .page-index__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index__features-grid,
  .page-index__article-grid {
    grid-template-columns: 1fr;
  }

  .page-index__cta-title {
    font-size: 1.5em;
  }

  .page-index__seo-title {
    font-size: 1.8em;
  }

  .page-index__seo-subtitle {
    font-size: 1.5em;
  }
}