.page-resources-vin-99-latest-trends-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

.page-resources-vin-99-latest-trends-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-vin-99-latest-trends-recommendations__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  padding-bottom: 60px;
  background-color: #26A9E0; /* Brand primary color for hero */
  color: #FFFFFF;
  overflow: hidden;
}

.page-resources-vin-99-latest-trends-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-vin-99-latest-trends-recommendations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-vin-99-latest-trends-recommendations__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-vin-99-latest-trends-recommendations__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

.page-resources-vin-99-latest-trends-recommendations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
}

.page-resources-vin-99-latest-trends-recommendations__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand primary color */
}

.page-resources-vin-99-latest-trends-recommendations__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Light text for dark background */
}

.page-resources-vin-99-latest-trends-recommendations__dark-section {
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
  padding: 60px 0;
}

.page-resources-vin-99-latest-trends-recommendations__introduction-section {
  padding: 60px 0;
}

.page-resources-vin-99-latest-trends-recommendations__introduction-section .page-resources-vin-99-latest-trends-recommendations__section-title {
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__introduction-section .page-resources-vin-99-latest-trends-recommendations__btn-secondary {
  margin-top: 20px;
}

.page-resources-vin-99-latest-trends-recommendations__trends-section {
  padding: 60px 0;
  background-color: var(--black-color);
}

.page-resources-vin-99-latest-trends-recommendations__trend-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vin-99-latest-trends-recommendations__card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-vin-99-latest-trends-recommendations__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-vin-99-latest-trends-recommendations__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-resources-vin-99-latest-trends-recommendations__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-vin-99-latest-trends-recommendations__card-text {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-vin-99-latest-trends-recommendations__card-link {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-vin-99-latest-trends-recommendations__card-link:hover {
  background-color: #1a7bb0;
}

.page-resources-vin-99-latest-trends-recommendations__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 40px auto 20px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-vin-99-latest-trends-recommendations__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-resources-vin-99-latest-trends-recommendations__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px); /* Adjust for controls */
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none; /* Allows click to pass through to video/link */
  z-index: 1;
}

.page-resources-vin-99-latest-trends-recommendations__video-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.page-resources-vin-99-latest-trends-recommendations__video-cta:hover {
  background-color: #c76a06;
}

.page-resources-vin-99-latest-trends-recommendations__why-choose-us-section {
  padding: 60px 0;
  background-color: var(--black-color);
}

.page-resources-vin-99-latest-trends-recommendations__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-vin-99-latest-trends-recommendations__advantage-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__advantage-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-vin-99-latest-trends-recommendations__advantage-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-resources-vin-99-latest-trends-recommendations__registration-guide {
  padding: 60px 0;
  background-color: var(--black-color);
}

.page-resources-vin-99-latest-trends-recommendations__steps-list {
  list-style: decimal;
  padding-left: 25px;
  max-width: 800px;
  margin: 40px auto;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-resources-vin-99-latest-trends-recommendations__step-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-resources-vin-99-latest-trends-recommendations__step-item strong {
  color: #26A9E0;
}

.page-resources-vin-99-latest-trends-recommendations__faq-section {
  padding: 60px 0;
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-vin-99-latest-trends-recommendations__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-vin-99-latest-trends-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-vin-99-latest-trends-recommendations__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-vin-99-latest-trends-recommendations__faq-question h3 {
  margin: 0;
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-vin-99-latest-trends-recommendations__faq-item.active .page-resources-vin-99-latest-trends-recommendations__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-vin-99-latest-trends-recommendations__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-vin-99-latest-trends-recommendations__faq-item.active .page-resources-vin-99-latest-trends-recommendations__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-resources-vin-99-latest-trends-recommendations__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__cta-section .page-resources-vin-99-latest-trends-recommendations__section-title {
  color: #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__cta-section .page-resources-vin-99-latest-trends-recommendations__section-description {
  color: #f0f0f0;
}

.page-resources-vin-99-latest-trends-recommendations__btn-primary,
.page-resources-vin-99-latest-trends-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-vin-99-latest-trends-recommendations__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-vin-99-latest-trends-recommendations__btn-primary:hover {
  background-color: #c76a06;
  border-color: #c76a06;
}

.page-resources-vin-99-latest-trends-recommendations__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-vin-99-latest-trends-recommendations__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-resources-vin-99-latest-trends-recommendations__copyright-info {
  text-align: center;
  padding: 30px 20px;
  background-color: #000000;
  color: #f0f0f0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-vin-99-latest-trends-recommendations__hero-title {
    font-size: 2.8em;
  }
  .page-resources-vin-99-latest-trends-recommendations__section-title {
    font-size: 2em;
  }
  .page-resources-vin-99-latest-trends-recommendations__trend-cards,
  .page-resources-vin-99-latest-trends-recommendations__advantage-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-vin-99-latest-trends-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-vin-99-latest-trends-recommendations__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-resources-vin-99-latest-trends-recommendations__hero-title {
    font-size: 2.2em;
  }
  .page-resources-vin-99-latest-trends-recommendations__hero-description {
    font-size: 1em;
  }
  .page-resources-vin-99-latest-trends-recommendations__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-vin-99-latest-trends-recommendations__btn-primary,
  .page-resources-vin-99-latest-trends-recommendations__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-vin-99-latest-trends-recommendations__container {
    padding: 0 15px;
  }
  .page-resources-vin-99-latest-trends-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-resources-vin-99-latest-trends-recommendations__section-description {
    font-size: 0.95em;
  }
  .page-resources-vin-99-latest-trends-recommendations__card {
    padding: 20px;
  }
  .page-resources-vin-99-latest-trends-recommendations__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-vin-99-latest-trends-recommendations__trend-cards,
  .page-resources-vin-99-latest-trends-recommendations__advantage-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-vin-99-latest-trends-recommendations__video,
  .page-resources-vin-99-latest-trends-recommendations__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .page-resources-vin-99-latest-trends-recommendations__video-section,
  .page-resources-vin-99-latest-trends-recommendations__video-container,
  .page-resources-vin-99-latest-trends-recommendations__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-vin-99-latest-trends-recommendations__video-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-vin-99-latest-trends-recommendations__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-vin-99-latest-trends-recommendations__faq-answer {
    padding: 0 20px;
  }
  .page-resources-vin-99-latest-trends-recommendations__faq-item.active .page-resources-vin-99-latest-trends-recommendations__faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-resources-vin-99-latest-trends-recommendations__steps-list {
    font-size: 1em;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-vin-99-latest-trends-recommendations__hero-title {
    font-size: 1.8em;
  }
  .page-resources-vin-99-latest-trends-recommendations__hero-description {
    font-size: 0.9em;
  }
  .page-resources-vin-99-latest-trends-recommendations__section-title {
    font-size: 1.5em;
  }
  .page-resources-vin-99-latest-trends-recommendations__faq-question h3 {
    font-size: 0.95em;
  }
}