.page-promotions-latest-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #121212 -> Light text */
  background-color: #121212; /* Matches body background */
}

/* Shared styles for sections and containers */
.page-promotions-latest-offers__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #007bff);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions-latest-offers__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions-latest-offers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions-latest-offers__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions-latest-offers__btn-primary {
  background: var(--primary-color, #007bff);
  color: #ffffff;
}

.page-promotions-latest-offers__btn-primary:hover {
  background: var(--secondary-color, #0056b3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__btn-secondary {
  background: #ffffff;
  color: var(--primary-color, #007bff);
  border: 2px solid var(--primary-color, #007bff);
}

.page-promotions-latest-offers__btn-secondary:hover {
  background: var(--primary-color, #007bff);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-latest-offers__dark-bg {
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
}

/* Video Section */
.page-promotions-latest-offers__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Adjusted for fixed header */
  background-color: #1a1a1a;
}

.page-promotions-latest-offers__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-latest-offers__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-latest-offers__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-latest-offers__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
}

.page-promotions-latest-offers__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-promotions-latest-offers__video-link:hover .page-promotions-latest-offers__video-overlay {
  opacity: 1;
}

.page-promotions-latest-offers__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(0, 123, 255, 0.85);
  border-radius: 50px;
  white-space: nowrap;
}

.page-promotions-latest-offers__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-promotions-latest-offers__play-now-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--accent-color, #ffc107);
  color: #121212;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions-latest-offers__play-now-button:hover {
  background: #e0a800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* Title Section */
.page-promotions-latest-offers__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
  margin-top: 0; /* Already handled by video section padding-top */
}

.page-promotions-latest-offers__title-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions-latest-offers__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-promotions-latest-offers__title-description {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Content Area */
.page-promotions-latest-offers__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #121212;
}

.page-promotions-latest-offers__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-promotions-latest-offers__promotion-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offers__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-latest-offers__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__card-content {
  padding: 30px;
}

.page-promotions-latest-offers__card-title-link {
  text-decoration: none;
  color: var(--accent-color, #ffc107);
  transition: color 0.3s ease;
}

.page-promotions-latest-offers__card-title-link:hover {
  color: #ffffff;
}

.page-promotions-latest-offers__card-content h3 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions-latest-offers__card-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-promotions-latest-offers__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions-latest-offers__card-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #e0e0e0;
}

.page-promotions-latest-offers__card-features li::before {
  content: '✓';
  color: var(--accent-color, #ffc107);
  font-weight: bold;
  margin-right: 10px;
}

.page-promotions-latest-offers__link-feature {
  color: #e0e0e0;
  text-decoration: none;
}

.page-promotions-latest-offers__link-feature:hover {
  color: var(--accent-color, #ffc107);
}

.page-promotions-latest-offers__card-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-promotions-latest-offers__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-latest-offers__benefit-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offers__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-latest-offers__benefit-item h3 {
  font-size: 22px;
  color: var(--accent-color, #ffc107);
  margin-bottom: 10px;
}

.page-promotions-latest-offers__benefit-item p {
  font-size: 15px;
  color: #cccccc;
}

.page-promotions-latest-offers__how-to-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-latest-offers__guide-step {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offers__guide-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  object-fit: contain;
}

.page-promotions-latest-offers__guide-step h4 {
  font-size: 24px;
  color: var(--primary-color, #007bff);
  margin-bottom: 15px;
}

.page-promotions-latest-offers__guide-step p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 30px;
}

.page-promotions-latest-offers__guide-button {
  padding: 10px 25px;
  font-size: 16px;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-promotions-latest-offers__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-latest-offers__faq-main-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--accent-color, #ffc107);
  text-align: center;
  margin-bottom: 50px;
}

.page-promotions-latest-offers__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #222222;
}

.page-promotions-latest-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
  max-height: 2000px !important; /* Sufficiently large for content */
  padding: 20px 25px !important;
  opacity: 1;
  background: #2b2b2b;
  border-radius: 0 0 10px 10px;
  color: #cccccc;
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #222222;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-latest-offers__faq-question:hover {
  background: #2e2e2e;
}

.page-promotions-latest-offers__faq-question:active {
  background: #3a3a3a;
}

.page-promotions-latest-offers__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--accent-color, #ffc107);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-toggle {
  color: var(--primary-color, #007bff);
  transform: rotate(45deg);
}

/* Brand Section */
.page-promotions-latest-offers__brand-section {
  padding: 80px 20px;
  background-color: #121212;
  color: #ffffff;
}

.page-promotions-latest-offers__brand-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions-latest-offers__brand-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #007bff);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-promotions-latest-offers__brand-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-promotions-latest-offers__brand-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-promotions-latest-offers__brand-item {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offers__brand-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-latest-offers__brand-item h3 {
  font-size: 20px;
  color: var(--accent-color, #ffc107);
  margin-bottom: 10px;
}

.page-promotions-latest-offers__brand-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b0b0;
}

.page-promotions-latest-offers__brand-cta {
  margin-top: 50px;
}

/* Blog Section */
.page-promotions-latest-offers__blog-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions-latest-offers__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-latest-offers__blog-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color, #007bff);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-promotions-latest-offers__blog-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions-latest-offers__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-promotions-latest-offers__blog-item {
  background-color: #222222;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offers__blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-latest-offers__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__blog-item-content {
  padding: 25px;
}

.page-promotions-latest-offers__blog-item-title {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions-latest-offers__blog-link {
  text-decoration: none;
  color: var(--accent-color, #ffc107);
  transition: color 0.3s ease;
}

.page-promotions-latest-offers__blog-link:hover {
  color: #ffffff;
}

.page-promotions-latest-offers__blog-item-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-promotions-latest-offers__blog-item-date {
  font-size: 14px;
  color: #888888;
  display: block;
  margin-top: 15px;
}

.page-promotions-latest-offers__view-all-button-container {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-latest-offers__view-all-button {
  padding: 12px 30px;
  font-size: 17px;
}

/* General Image Responsive */
.page-promotions-latest-offers img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-latest-offers__main-title {
    font-size: 42px;
  }
  .page-promotions-latest-offers__section-title,
  .page-promotions-latest-offers__faq-main-title,
  .page-promotions-latest-offers__brand-title,
  .page-promotions-latest-offers__blog-title {
    font-size: 32px;
  }
  .page-promotions-latest-offers__title-description,
  .page-promotions-latest-offers__section-description,
  .page-promotions-latest-offers__blog-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions-latest-offers {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promotions-latest-offers__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-promotions-latest-offers__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-promotions-latest-offers__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions-latest-offers__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }
  
  .page-promotions-latest-offers__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
  }
  
  .page-promotions-latest-offers__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .page-promotions-latest-offers__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-promotions-latest-offers__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-latest-offers__title-section {
    padding: 60px 15px;
  }

  .page-promotions-latest-offers__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-promotions-latest-offers__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-latest-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-latest-offers__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px;
    padding: 12px 25px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-latest-offers__content-area {
    padding: 60px 15px;
  }

  .page-promotions-latest-offers__section-title,
  .page-promotions-latest-offers__faq-main-title,
  .page-promotions-latest-offers__brand-title,
  .page-promotions-latest-offers__blog-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions-latest-offers__section-description,
  .page-promotions-latest-offers__blog-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions-latest-offers__promotions-grid,
  .page-promotions-latest-offers__benefits-grid,
  .page-promotions-latest-offers__how-to-guide,
  .page-promotions-latest-offers__brand-features,
  .page-promotions-latest-offers__blog-list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .page-promotions-latest-offers__promotion-card,
  .page-promotions-latest-offers__benefit-item,
  .page-promotions-latest-offers__guide-step,
  .page-promotions-latest-offers__brand-item,
  .page-promotions-latest-offers__blog-item {
    border-radius: 8px;
    padding: 25px;
  }

  .page-promotions-latest-offers__promotion-image {
    height: 200px;
  }

  .page-promotions-latest-offers__card-content h3 {
    font-size: 20px;
  }

  .page-promotions-latest-offers__card-text {
    font-size: 15px;
  }

  .page-promotions-latest-offers__card-button {
    font-size: 15px;
    padding: 10px 15px;
  }

  .page-promotions-latest-offers__benefit-icon,
  .page-promotions-latest-offers__guide-icon,
  .page-promotions-latest-offers__brand-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .page-promotions-latest-offers__benefit-item h3,
  .page-promotions-latest-offers__guide-step h4 {
    font-size: 18px;
  }

  .page-promotions-latest-offers__faq-section {
    padding: 60px 15px;
  }

  .page-promotions-latest-offers__faq-question {
    padding: 15px 20px;
  }

  .page-promotions-latest-offers__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions-latest-offers__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions-latest-offers__brand-section {
    padding: 60px 15px;
  }

  .page-promotions-latest-offers__brand-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-latest-offers__brand-features {
    gap: 20px;
  }

  .page-promotions-latest-offers__blog-item-image {
    height: 180px;
  }

  .page-promotions-latest-offers__blog-item-content {
    padding: 20px;
  }

  .page-promotions-latest-offers__blog-item-title {
    font-size: 18px;
  }

  .page-promotions-latest-offers__blog-item-excerpt {
    font-size: 14px;
  }

  .page-promotions-latest-offers__view-all-button-container {
    margin-top: 40px;
  }

  .page-promotions-latest-offers__view-all-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Ensure all images are responsive */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure all containers with images/content are responsive */
  .page-promotions-latest-offers__section,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__promotions-grid,
  .page-promotions-latest-offers__benefits-grid,
  .page-promotions-latest-offers__how-to-guide,
  .page-promotions-latest-offers__brand-features,
  .page-promotions-latest-offers__blog-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-latest-offers__brand-cta {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-promotions-latest-offers__main-title {
    font-size: 32px;
  }
  .page-promotions-latest-offers__section-title,
  .page-promotions-latest-offers__faq-main-title,
  .page-promotions-latest-offers__brand-title,
  .page-promotions-latest-offers__blog-title {
    font-size: 24px;
  }
  .page-promotions-latest-offers__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  .page-promotions-latest-offers__play-now-button {
    font-size: 16px !important;
    padding: 12px 25px !important;
  }
  .page-promotions-latest-offers__card-content h3 {
    font-size: 18px;
  }
  .page-promotions-latest-offers__card-text {
    font-size: 14px;
  }
  .page-promotions-latest-offers__card-features li {
    font-size: 14px;
  }
  .page-promotions-latest-offers__benefit-item h3,
  .page-promotions-latest-offers__guide-step h4 {
    font-size: 16px;
  }
  .page-promotions-latest-offers__blog-item-title {
    font-size: 16px;
  }
  .page-promotions-latest-offers__blog-item-excerpt {
    font-size: 13px;
  }
}