/* style/expert-predictions-lottery-trends.css */

/* General Page Styling */
.page-expert-predictions-lottery-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-expert-predictions-lottery-trends .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-predictions-lotrends .section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-expert-predictions-lottery-trends .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-expert-predictions-lottery-trends p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #495057;
}

.page-expert-predictions-lottery-trends ul, .page-expert-predictions-lottery-trends ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #495057;
}

.page-expert-predictions-lottery-trends ul li, .page-expert-predictions-lottery-trends ol li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-expert-predictions-lottery-trends h3 {
  font-size: 1.8em;
  color: #0056b3; /* Darker shade of primary for contrast */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-expert-predictions-lottery-trends h4 {
  font-size: 1.4em;
  color: #0056b3;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-expert-predictions-lottery-trends a {
  color: #007bff;
  text-decoration: none;
}

.page-expert-predictions-lottery-trends a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-expert-predictions-lottery-trends .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-expert-predictions-lottery-trends .btn-primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-expert-predictions-lottery-trends .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-expert-predictions-lottery-trends .btn-secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-expert-predictions-lottery-trends .btn-secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Hero Section */
.page-expert-predictions-lottery-trends .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-lottery-trends .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.page-expert-predictions-lottery-trends .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e9ecef;
}

.page-expert-predictions-lottery-trends .hero-cta {
  padding: 15px 40px;
  font-size: 1.3em;
  border-width: 3px;
  border-color: #ffc107;
  background-color: #ffc107;
  color: #333;
}

.page-expert-predictions-lottery-trends .hero-cta:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Section Spacing */
.page-expert-predictions-lottery-trends section {
  padding: 60px 0;
}

.page-expert-predictions-lottery-trends section:nth-of-type(even) {
  background-color: #e9ecef;
}

/* Content Grid for Why Analyze Section */
.page-expert-predictions-lottery-trends .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-expert-predictions-lottery-trends .content-grid .text-content {
  flex: 1;
}

.page-expert-predictions-lottery-trends .content-grid .image-content {
  flex: 1;
  text-align: center;
}

.page-expert-predictions-lottery-trends .content-grid .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Lottery Grid Section */
.page-expert-predictions-lottery-trends .lottery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-expert-predictions-lottery-trends .lottery-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-lottery-trends .lottery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions-lottery-trends .lottery-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions-lottery-trends .lottery-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 0;
}

.page-expert-predictions-lottery-trends .lottery-item p {
  font-size: 1em;
  color: #6c757d;
}

/* Analysis Methods Section */
.page-expert-predictions-lottery-trends .method-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.page-expert-predictions-lottery-trends .method-item:last-child {
  margin-bottom: 0;
}

/* Tools Section */
.page-expert-predictions-lottery-trends .tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-expert-predictions-lottery-trends .tool-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-expert-predictions-lottery-trends .tool-item:hover {
  transform: translateY(-5px);
}

.page-expert-predictions-lottery-trends .tool-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions-lottery-trends .tool-item h4 {
  color: #007bff;
  margin-top: 0;
}

.page-expert-predictions-lottery-trends .tool-item p {
  font-size: 1em;
  color: #6c757d;
}

/* Benefits Section */
.page-expert-predictions-lottery-trends .benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-expert-predictions-lottery-trends .benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-expert-predictions-lottery-trends .benefit-item:hover {
  transform: translateY(-5px);
}

.page-expert-predictions-lottery-trends .benefit-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-expert-predictions-lottery-trends .benefit-item h4 {
  color: #007bff;
  margin-top: 0;
}

.page-expert-predictions-lottery-trends .benefit-item p {
  font-size: 1em;
  color: #6c757d;
}

.page-expert-predictions-lottery-trends .cta-btn {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Section */
.page-expert-predictions-lottery-trends .cta-section {
  background-color: #007bff; /* Primary brand color */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-expert-predictions-lottery-trends .cta-section .section-title {
  color: #fff;
}

.page-expert-predictions-lottery-trends .cta-section .section-title::after {
  background-color: #ffc107;
}

.page-expert-predictions-lottery-trends .cta-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e9ecef;
}

.page-expert-predictions-lottery-trends .cta-section .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333;
  padding: 15px 40px;
  font-size: 1.3em;
}

.page-expert-predictions-lottery-trends .cta-section .btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-expert-predictions-lottery-trends .cta-section .small-text {
  font-size: 0.9em;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.page-expert-predictions-lottery-trends .faq-section {
  background-color: #f8f9fa;
}

.page-expert-predictions-lottery-trends .faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-expert-predictions-lottery-trends .faq-item h3 {
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-expert-predictions-lottery-trends .faq-item p {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-predictions-lottery-trends .hero-title {
    font-size: 2.8em;
  }
  .page-expert-predictions-lottery-trends .hero-description {
    font-size: 1.1em;
  }
  .page-expert-predictions-lottery-trends .section-title {
    font-size: 2em;
  }
  .page-expert-predictions-lottery-trends .content-grid {
    flex-direction: column;
  }
  .page-expert-predictions-lottery-trends .lottery-grid,
  .page-expert-predictions-lottery-trends .tool-grid,
  .page-expert-predictions-lottery-trends .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-lottery-trends .hero-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-lottery-trends .hero-description {
    font-size: 1em;
  }
  .page-expert-predictions-lottery-trends .hero-cta {
    padding: 10px 25px;
    font-size: 1.1em;
  }
  .page-expert-predictions-lottery-trends .section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-lottery-trends p {
    font-size: 1em;
  }
  .page-expert-predictions-lottery-trends h3 {
    font-size: 1.5em;
  }
  .page-expert-predictions-lottery-trends .lottery-grid,
  .page-expert-predictions-lottery-trends .tool-grid,
  .page-expert-predictions-lottery-trends .benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-expert-predictions-lottery-trends .cta-section p {
    font-size: 1em;
  }
  .page-expert-predictions-lottery-trends .cta-section .btn-primary {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}