/* 
 * Content Syndication Page Styles
 * Contains all styles specific to the content syndication service page
 */

/* Hero section */
.content-syndication-hero {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.content-syndication-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.content-syndication-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Benefits section */
.content-syndication-benefits {
  padding: 5rem 0;
}

.content-syndication-benefits h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.benefit-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card .benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* How it works section */
.content-syndication-process {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.content-syndication-process h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step .step-number {
  flex: 0 0 80px;
  height: 80px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
}

.process-step .step-content h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* Features section */
.content-syndication-features {
  padding: 5rem 0;
}

.content-syndication-features h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-item .feature-icon {
  flex: 0 0 50px;
  font-size: 1.5rem;
  color: #0056b3;
  margin-right: 1.5rem;
}

.feature-item .feature-content h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

/* Case studies section */
.content-syndication-case-studies {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.content-syndication-case-studies h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.case-study-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content {
  padding: 2rem;
}

.case-study-content h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.case-study-content .client {
  color: #6c757d;
  margin-bottom: 1rem;
}

.case-study-content .results {
  margin-bottom: 1.5rem;
}

.case-study-content .result-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.case-study-content .result-item i {
  color: #28a745;
  margin-right: 0.5rem;
}

/* Testimonials section */
.content-syndication-testimonials {
  padding: 5rem 0;
}

.content-syndication-testimonials h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial-card .client {
  display: flex;
  align-items: center;
}

.testimonial-card .client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-card .client-info h5 {
  margin-bottom: 0.25rem;
  color: #333;
}

.testimonial-card .client-info p {
  color: #6c757d;
  margin-bottom: 0;
}

/* CTA section */
.content-syndication-cta {
  background-color: #0056b3;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.content-syndication-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-syndication-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-syndication-cta .btn-light {
  padding: 0.75rem 2rem;
  font-weight: 500;
}

/* FAQ section */
.content-syndication-faq {
  padding: 5rem 0;
}

.content-syndication-faq h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header .accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  color: #333;
}

.accordion-button:not(.collapsed) {
  background-color: #e7f1ff;
  color: #0056b3;
}

.accordion-body {
  padding: 1.25rem;
  color: #333;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .content-syndication-hero h1 {
    font-size: 2.5rem;
  }
  
  .content-syndication-hero p {
    font-size: 1.1rem;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .process-step .step-number {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .content-syndication-cta h2 {
    font-size: 2rem;
  }
  
  .content-syndication-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .content-syndication-hero h1 {
    font-size: 2rem;
  }
  
  .case-study-image {
    height: 150px;
  }
}

/* @media screen and (max-width: 767.98px) {
  .row2 {
    display: flex;
    flex-direction: column-reverse;
  }
} */

@media screen and (min-width: 375px) and (max-width: 668px) {
  .row2 {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .row2 {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 820px) and (max-width: 1180px) {
  .row2 {
    display: flex;
    flex-direction: column-reverse;
  }
}
