/* style/resources-how-to-choose-68gb-platform.css */

/* Variables */
:root {
  --page-resources-primary-color: #0A192F;
  --page-resources-accent-color: #64FFDA;
  --page-resources-text-light: #F0F2F5;
  --page-resources-text-dark: #1A202C;
  --page-resources-bg-light: #FFFFFF;
  --page-resources-bg-dark: #0A192F;
  --page-resources-border-color: #304050;
}

.page-resources-how-to-choose-68gb-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-resources-text-dark);
  background-color: var(--page-resources-bg-light);
}

.page-resources-how-to-choose-68gb-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-how-to-choose-68gb-platform__hero-section {
  background: linear-gradient(135deg, var(--page-resources-bg-dark) 0%, #1A3E5C 100%); /* Darker blue gradient for depth */
  padding: 100px 0;
  text-align: center;
  color: var(--page-resources-text-light);
}

.page-resources-how-to-choose-68gb-platform__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-resources-accent-color); /* Accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-68gb-platform__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--page-resources-text-light);
}

/* Buttons */
.page-resources-how-to-choose-68gb-platform__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-resources-how-to-choose-68gb-platform__btn--primary {
  background-color: var(--page-resources-accent-color);
  color: var(--page-resources-primary-color);
}

.page-resources-how-to-choose-68gb-platform__btn--primary:hover {
  background-color: #4CAF8D; /* Slightly darker accent */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
}

.page-resources-how-to-choose-68gb-platform__btn--secondary {
  background-color: transparent;
  color: var(--page-resources-accent-color);
  border: 2px solid var(--page-resources-accent-color);
  margin-left: 20px;
}

.page-resources-how-to-choose-68gb-platform__btn--secondary:hover {
  background-color: var(--page-resources-accent-color);
  color: var(--page-resources-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
}

.page-resources-how-to-choose-68gb-platform__btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Content Section */
.page-resources-how-to-choose-68gb-platform__content-section {
  padding: 60px 0;
  background-color: var(--page-resources-bg-light);
}

.page-resources-how-to-choose-68gb-platform__section-title {
  font-size: 2.5em;
  color: var(--page-resources-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-choose-68gb-platform__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-resources-accent-color);
  border-radius: 2px;
}

.page-resources-how-to-choose-68gb-platform__list,
.page-resources-how-to-choose-68gb-platform__ordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-68gb-platform__list li,
.page-resources-how-to-choose-68gb-platform__ordered-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-resources-text-dark);
}

.page-resources-how-to-choose-68gb-platform__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-resources-accent-color);
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

.page-resources-how-to-choose-68gb-platform__ordered-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: var(--page-resources-accent-color);
  color: var(--page-resources-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
  top: 0;
}

.page-resources-how-to-choose-68gb-platform__list-small {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-resources-how-to-choose-68gb-platform__list-small li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--page-resources-text-dark);
}

.page-resources-how-to-choose-68gb-platform__list-small li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--page-resources-accent-color);
  font-size: 1.5em;
  line-height: 0.8;
  top: 0;
}

.page-resources-how-to-choose-68gb-platform__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-68gb-platform__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-resources-how-to-choose-68gb-platform__criteria-item {
  background-color: var(--page-resources-bg-light);
  border: 1px solid var(--page-resources-border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-how-to-choose-68gb-platform__criteria-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-choose-68gb-platform__criteria-title {
  font-size: 1.8em;
  color: var(--page-resources-primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--page-resources-accent-color);
  padding-bottom: 10px;
}

.page-resources-how-to-choose-68gb-platform__criteria-item p {
  color: var(--page-resources-text-dark);
  margin-bottom: 15px;
}

.page-resources-how-to-choose-68gb-platform__image-inline {
  width: 100%;
  height: auto;
  max-height: 200px; /* Limit height for inline images */
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-how-to-choose-68gb-platform__hero-title {
    font-size: 2.5em;
  }
  .page-resources-how-to-choose-68gb-platform__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-68gb-platform__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-68gb-platform__criteria-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-68gb-platform__hero-section {
    padding: 80px 0;
  }
  .page-resources-how-to-choose-68gb-platform__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-68gb-platform__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-68gb-platform__btn-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-choose-68gb-platform__btn--secondary {
    margin-left: 0;
  }
  .page-resources-how-to-choose-68gb-platform__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-68gb-platform__criteria-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-how-to-choose-68gb-platform__criteria-item {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-68gb-platform__hero-section {
    padding: 60px 0;
  }
  .page-resources-how-to-choose-68gb-platform__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-68gb-platform__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-how-to-choose-68gb-platform__section-title {
    font-size: 1.5em;
  }
  .page-resources-how-to-choose-68gb-platform__list li,
  .page-resources-how-to-choose-68gb-platform__ordered-list li {
    font-size: 0.95em;
  }
}