/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions h1, .page-promotions h2, .page-promotions h3 {
  color: #1E90FF; /* Deep blue for headings */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-promotions h3 {
  font-size: 1.6em;
  color: #1E90FF;
}

.page-promotions p {
  margin-bottom: 15px;
}

.page-promotions a {
  color: #1E90FF;
  text-decoration: none;
}

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

.page-promotions .button, .page-promotions .cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700; /* Gold button */
  color: #1E90FF; /* Deep blue text on gold */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions .button:hover, .page-promotions .cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #0d47a1; /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-promotions .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1E90FF; /* Deep blue background for hero */
}

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

.page-promotions .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text on blue background */
}

.page-promotions .hero-content h1 {
  color: #FFD700; /* Gold for hero title */
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-promotions .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-promotions .cta-button {
  padding: 15px 40px;
  font-size: 1.2em;
  margin-top: 20px;
}

/* Section Styling */
.page-promotions .section-intro, .page-promotions .section-types, .page-promotions .section-how-to-claim, .page-promotions .section-terms, .page-promotions .section-faq, .page-promotions .section-cta-bottom {
  padding: 60px 0;
}

.page-promotions .section-intro {
  background-color: #ffffff;
}

.page-promotions .promotions-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions .highlight-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions .highlight-item img {
  width: 150px; /* Larger images, not icons */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-promotions .highlight-item h3 {
  color: #FFD700; /* Gold for highlight titles */
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-promotions .section-types {
  background-color: #f0f5fa; /* Light blue tint */
}

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

.page-promotions .promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .promotion-card img {
  width: 100%;
  height: 250px; /* Large image for cards */
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.page-promotions .promotion-card h3 {
  font-size: 1.8em;
  margin: 0 20px 15px;
  color: #1E90FF;
}

.page-promotions .promotion-card h3 a {
  color: #1E90FF;
  text-decoration: none;
}

.page-promotions .promotion-card h3 a:hover {
  text-decoration: underline;
}

.page-promotions .promotion-card p {
  padding: 0 20px;
  font-size: 1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions .promotion-card .button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions .section-how-to-claim {
  background-color: #ffffff;
}

.page-promotions .claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions .claim-steps li {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions .claim-steps li h3 {
  color: #FFD700; /* Gold for step titles */
  font-size: 1.7em;
  margin-bottom: 10px;
}

.page-promotions .claim-steps li p {
  color: #444;
}

.page-promotions .section-terms {
  background-color: #f0f5fa;
}

.page-promotions .section-terms ul {
  list-style: disc;
  margin-left: 25px;
  margin-top: 20px;
}

.page-promotions .section-terms ul li {
  margin-bottom: 10px;
  color: #444;
}

.page-promotions .section-terms ul li strong {
  color: #1E90FF;
}

.page-promotions .section-faq {
  background-color: #ffffff;
  padding-bottom: 80px;
}

.page-promotions .faq-list {
  margin-top: 40px;
}

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
  background: #f5f5f5;
}

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #1E90FF;
}

.page-promotions .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold toggle icon */
  transition: transform 0.3s ease;
}

.page-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1E90FF;
}

.page-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
  color: #555;
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-promotions .faq-answer p {
  margin-bottom: 0;
}

.page-promotions .section-cta-bottom {
  background-color: #1E90FF; /* Deep blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promotions .section-cta-bottom h2 {
  color: #FFD700; /* Gold for CTA title */
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-promotions .section-cta-bottom p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions .section-cta-bottom .cta-button {
  background-color: #FFD700;
  color: #1E90FF;
  font-size: 1.3em;
  padding: 18px 45px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions .hero-content h1 {
    font-size: 2.8em;
  }
  .page-promotions h2 {
    font-size: 1.8em;
  }
  .page-promotions h3 {
    font-size: 1.4em;
  }
  .page-promotions .promotions-highlight-grid, .page-promotions .promotion-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions .highlight-item img {
    width: 120px;
    height: 120px;
  }
  .page-promotions .promotion-card img {
    height: 200px;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 2em;
  }
  .page-promotions .section-cta-bottom .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-promotions .hero-content h1 {
    font-size: 2.2em;
  }
  .page-promotions .hero-content p {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .section-intro, .page-promotions .section-types, .page-promotions .section-how-to-claim, .page-promotions .section-terms, .page-promotions .section-faq, .page-promotions .section-cta-bottom {
    padding: 40px 0;
  }
  .page-promotions h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-toggle {
    font-size: 20px;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 10px 20px 20px;
  }
  .page-promotions .claim-steps li {
    padding: 20px;
  }
  .page-promotions .claim-steps li h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-content h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.4em;
  }
  .page-promotions .promotions-highlight-grid, .page-promotions .promotion-card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .highlight-item {
    padding: 20px;
  }
  .page-promotions .promotion-card {
    margin: 0 10px;
  }
  .page-promotions .promotion-card h3 {
    font-size: 1.5em;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 1.8em;
  }
  .page-promotions .section-cta-bottom .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
}