/* style/resources-vnsoxo-review.css */
:root {
  --primary-color: #1A2E47;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f8f9fa;
  --card-background-dark-alpha: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-resources-vnsoxo-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-resources-vnsoxo-review__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f1c2e 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
}

.page-resources-vnsoxo-review__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-vnsoxo-review__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-resources-vnsoxo-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-vnsoxo-review__cta-buttons--center {
  justify-content: center;
}

.page-resources-vnsoxo-review__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-vnsoxo-review__cta-button--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-vnsoxo-review__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-vnsoxo-review__cta-button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-vnsoxo-review__cta-button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-vnsoxo-review__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-resources-vnsoxo-review__section {
  padding: 60px 0;
}

.page-resources-vnsoxo-review__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-resources-vnsoxo-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-vnsoxo-review__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-resources-vnsoxo-review__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-vnsoxo-review__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-vnsoxo-review__light-bg .page-resources-vnsoxo-review__section-title {
  color: var(--primary-color);
}

.page-resources-vnsoxo-review__light-bg .page-resources-vnsoxo-review__section-title::after {
  background-color: var(--primary-color);
}

.page-resources-vnsoxo-review__light-bg .page-resources-vnsoxo-review__section-text {
  color: var(--text-dark);
}

.page-resources-vnsoxo-review__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vnsoxo-review__card {
  background-color: var(--card-background-dark-alpha);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-resources-vnsoxo-review__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-vnsoxo-review__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-resources-vnsoxo-review__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-vnsoxo-review__card-description {
  font-size: 1em;
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-vnsoxo-review__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-vnsoxo-review__dark-bg .page-resources-vnsoxo-review__card-title {
  color: var(--secondary-color);
}

.page-resources-vnsoxo-review__dark-bg .page-resources-vnsoxo-review__card-description {
  color: var(--text-light);
}

.page-resources-vnsoxo-review__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vnsoxo-review__feature-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-vnsoxo-review__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-resources-vnsoxo-review__feature-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-vnsoxo-review__feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-vnsoxo-review__btn-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-vnsoxo-review__btn-link:hover {
  background-color: #0d1e33;
}

.page-resources-vnsoxo-review__content-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-resources-vnsoxo-review__content-block--reversed {
  flex-direction: row-reverse;
}

.page-resources-vnsoxo-review__content-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-light);
}

.page-resources-vnsoxo-review__light-bg .page-resources-vnsoxo-review__content-text {
  color: var(--text-dark);
}

.page-resources-vnsoxo-review__sub-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-resources-vnsoxo-review__light-bg .page-resources-vnsoxo-review__sub-title {
  color: var(--primary-color);
}

.page-resources-vnsoxo-review__content-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-vnsoxo-review__content-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  display: block;
  max-width: 100%;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-vnsoxo-review__main-title {
    font-size: 2.8em;
  }
  .page-resources-vnsoxo-review__section-title {
    font-size: 2em;
  }
  .page-resources-vnsoxo-review__sub-title {
    font-size: 1.8em;
  }
  .page-resources-vnsoxo-review__content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-vnsoxo-review__content-block--reversed {
    flex-direction: column;
  }
  .page-resources-vnsoxo-review__content-image {
    min-width: unset;
    width: 100%;
    order: -1; /* Image first on mobile for reversed blocks */
  }
  .page-resources-vnsoxo-review__content-block--reversed .page-resources-vnsoxo-review__content-image {
    order: -1;
  }
  .page-resources-vnsoxo-review__content-text {
    min-width: unset;
    width: 100%;
  }
  .page-resources-vnsoxo-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-vnsoxo-review__cta-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .page-resources-vnsoxo-review {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 15px;
  }
  .page-resources-vnsoxo-review__container {
    padding: 0 15px;
  }
  .page-resources-vnsoxo-review__hero-section {
    padding: 60px 0;
  }
  .page-resources-vnsoxo-review__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-vnsoxo-review__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-vnsoxo-review__section {
    padding: 40px 0;
  }
  .page-resources-vnsoxo-review__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-vnsoxo-review__section-text {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-resources-vnsoxo-review__grid, .page-resources-vnsoxo-review__feature-list {
    gap: 20px;
  }
  .page-resources-vnsoxo-review__card {
    padding: 20px;
  }
  .page-resources-vnsoxo-review__card-image {
    height: 200px;
  }
  .page-resources-vnsoxo-review__card-title {
    font-size: 1.3em;
  }
  .page-resources-vnsoxo-review__feature-item {
    padding: 20px;
  }
  .page-resources-vnsoxo-review__feature-icon {
    width: 100px;
    height: 100px;
  }
  .page-resources-vnsoxo-review__feature-title {
    font-size: 1.2em;
  }
  .page-resources-vnsoxo-review__content-block {
    gap: 30px;
    margin-bottom: 40px;
  }
  .page-resources-vnsoxo-review__sub-title {
    font-size: 1.6em;
  }
  .page-resources-vnsoxo-review__content-text p {
    font-size: 1em;
  }
  .page-resources-vnsoxo-review__content-image {
    min-width: unset;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0;
  }
  .page-resources-vnsoxo-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-vnsoxo-review__section,
  .page-resources-vnsoxo-review__card,
  .page-resources-vnsoxo-review__container,
  .page-resources-vnsoxo-review__content-block,
  .page-resources-vnsoxo-review__cta-buttons,
  .page-resources-vnsoxo-review__feature-list,
  .page-resources-vnsoxo-review__feature-item,
  .page-resources-vnsoxo-review__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-vnsoxo-review__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}