﻿/* Core Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.industry-hero {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

  .industry-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .industry-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
  }

.industry-hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
}

/* Section Layouts */
.industry-section {
  padding: 60px 20px;
}

  .industry-section.alt {
    background-color: #fafafa;
  }

.two-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

  .two-column.reverse {
    flex-direction: column-reverse;
  }

.text {
  flex: 1;
}

.image {
  flex: 1;
}

  .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

.text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

.text ul {
  padding-left: 20px;
  color: #555;
}

  .text ul li {
    margin-bottom: 8px;
    list-style: disc;
  }

/* CTA Grid Section */
.industry-cta {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

  .industry-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

  .industry-grid li {
    width: 180px;
    text-align: center;
    font-size: 1rem;
    color: #444;
  }

  .industry-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
  }

/* SEO Text Section */
.industry-seo-text {
  padding: 60px 20px;
  background: #fff;
}

  .industry-seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .industry-seo-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
  }

/* Responsive */
@media (min-width: 768px) {
  .two-column {
    flex-direction: row;
    align-items: center;
  }

    .two-column.reverse {
      flex-direction: row-reverse;
    }

  .text, .image {
    flex: 1;
  }

  .industry-grid li {
    width: 200px;
  }
}
