/* Brindle Website Styles */

/* -- Reset & page background -- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* -- Sticky Header -- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: none;
}

/* -- Logo sizing -- */
.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* -- Nav links styling -- */
nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 4rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  position: absolute;
  right: 20px;
  top: 1.2rem;
  transform: translateY(-50%);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #14263d;
  margin: 5px 0;
  transition: 0.3s;
}

.nav-link {
  color: #14263d;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d86c34;
  text-decoration: none;
}

.login-button {
  color: #14263d;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-left: 20px;
}

.login-button:hover {
  color: #d86c34;
  text-decoration: none;
}

.upload-button {
  color: #14263d;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-left: 20px;
}

.upload-button:hover {
  color: #d86c34;
  text-decoration: none;
}

/* -- Desktop Fixed Header -- */
@media (min-width: 769px) {
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  main {
    margin-top: 80px; /* adjust if your header height changes */
  }
}

/* -- Hero Box Styling -- */
.hero-box {
  margin: 40px 0;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 0;
  width: 100%;
  text-align: left;
  box-shadow: none;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 40px;
}

.hero-text {
  color: #14263d;
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  max-width: 100%;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 70%;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 0 -0.25cm;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.hero-text .brindle {
  color: #d86c34;
  display: block;
  margin-bottom: 20px;
}

.hero-text .subtitle {
  display: block;
  margin-bottom: 20px;
}

.hero-text .tagline {
  color: #d86c34;
  display: block;
  margin-top: 20px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.hero-cta .login-button {
  background-color: #14263d;
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-cta .login-button:hover {
  background-color: #0d1a2a;
}

/* Industry Grid Section */
.industry-grid-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  margin-bottom: 80px;
  width: 60%;
  max-width: 800px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.industry-card {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  transform: scale(1);
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Specific style for manufacturing card text */
.industry-card:nth-child(6) .overlay {
  font-size: 25px;
}

.industry-header-container {
  background-color: #14263d;
  padding: 20px;
  border-radius: 20px;
  width: 80%;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.industry-header {
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.industry-header .brindle-text {
  color: #d86c34;
  display: block;
  margin-bottom: 5px;
}

.industry-header .subtitle {
  font-size: 36px;
  display: block;
}

.industry-header-box {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
  margin: 0 auto 20px;
}

.industry-header-box .eyebrow {
  color: #14263d;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

.industry-header-box h2 {
  color: #14263d;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.industry-header-box h2 .brindle {
  color: #d86c34;
  display: block;
  margin-bottom: 5px;
}

.industry-header-box .subtitle {
  font-size: 36px;
  display: block;
}

/* -- Cards Container -- */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  width: 80%;
  max-width: 1200px;
}

/* -- Card Styling -- */
.card {
  flex: 1;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  display: flex;
  gap: 20px;
  height: 100%;
  min-height: 200px;
}

.card-image {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.card-image img {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h2 {
  color: #14263d;
  margin-top: 0;
  margin-bottom: 10px;
}

.card p {
  color: #14263d;
  line-height: 1.6;
  margin: 0;
}

.eyebrow {
  color: #14263d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.eyebrow-normal {
  color: #14263d;
  font-size: 30px;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* -- Why Brindle Section -- */
.hero-stats {
  margin: -1px 0 0 0;
  width: 100%;
  background-color: #14263d;
  padding: 40px 0;
}

/* -- No More Admin Section -- */
.no-more-admin-section {
  width: 100%;
  background-color: #14263d;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-more-admin-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  gap: 40px;
}

.no-more-admin-text-box {
  flex: 1;
  padding: 20px;
}

.no-more-admin-image-box {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.no-more-admin-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.no-more-admin-text-box .eyebrow {
  color: #d86c34;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 600;
}

.no-more-admin-text-box h2 {
  color: #d86c34;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.no-more-admin-text-box p {
  color: white;
  font-size: 48px;
  line-height: 1.6;
  max-width: 800px;
  font-weight: bold;
}

.hero-bg {
  text-align: center;
  margin-bottom: 60px;
  width: 80%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bg h2 {
  color: #d86c34;
  font-size: 90px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-bg p {
  color: #14263d;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-grid article {
  padding: 30px;
  background-color: #14263d;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #d86c34;
}

.stats-grid article.empty {
  visibility: hidden;
}

.stats-grid strong {
  display: block;
  color: #d86c34;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.stats-grid span {
  color: #d86c34;
  font-size: 18px;
  text-align: center;
  max-width: 300px;
}

/* -- Separator Angle -- */
.separator-angle {
  width: 100%;
  height: 100px;
  display: block;
  margin-top: -1px;
}

.separator-angle-up {
  width: 100%;
  height: 100px;
  display: block;
  margin: 0;
  padding: 0;
  transform: rotate(180deg);
}

.separator-angle polygon,
.separator-angle-up polygon {
  fill: #14263d;
}

.separator-angle:first-of-type {
  margin-top: -3px;
  height: 102px;
}

.separator-angle:first-of-type polygon {
  transform: translateY(1px);
}

/* -- Footer Styling -- */
footer {
  background-color: #14263d;
  color: white;
  padding: 60px 0 0 0;
}

.footer-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h3 {
  color: #d86c34;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column p, .footer-column a {
  color: white;
  text-decoration: none;
  line-height: 1.6;
  margin-bottom: 10px;
  display: block;
}

.footer-column a:hover {
  color: #d86c34;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* -- Pricing Section -- */
.pricing-section {
  padding: 40px 0 130px 0;
  background-color: #f8f9fa;
}

.pricing-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  color: #14263d;
  font-size: 48px;
  margin-bottom: 20px;
}

.pricing-header p {
  color: #666;
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.pricing-card.popular {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid #d86c34;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d86c34;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  color: #14263d;
  font-size: 24px;
  margin-bottom: 20px;
}

.pricing-card .price {
  color: #d86c34;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 16px;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-card li {
  color: #666;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-card li:before {
  content: "✓";
  color: #d86c34;
  position: absolute;
  left: 0;
}

.pricing-card .cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d86c34;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.pricing-card .cta-button:hover {
  background-color: #c55a24;
}

/* -- FAQ Section -- */
.faq-section {
  padding: 0 0 80px 0;
  background-color: #14263d;
  margin-top: -1px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 40px;
}

.faq-header h2 {
  color: #d86c34;
  font-size: 48px;
  margin-bottom: 20px;
}

.faq-grid {
  display: grid;
  gap: 20px;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* -- Contact Section -- */
.contact-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  color: #14263d;
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-header p {
  color: #666;
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  color: #14263d;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: #d86c34;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.submit-button:hover {
  background-color: #c55a24;
}

/* Process Section */
.process-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.process-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-header h2 {
  color: #14263d;
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: bold;
}

.process-header p {
  color: #666;
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.process-step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d86c34;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.process-step h3 {
  color: #14263d;
  font-size: 18px;
  margin: 20px 0 10px;
}

.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.process-cta {
  text-align: center;
  margin-top: 40px;
}

.process-cta p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.process-cta .login-button {
  background-color: #14263d;
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.process-cta .login-button:hover {
  background-color: #0d1a2a;
}

/* -- Second Section - Image Left, Text Right -- */
.second-section {
  width: 100%;
  background-color: #14263d;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  gap: 40px;
}

.second-section-image-box {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-section-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.second-section-text-box {
  flex: 1;
  padding: 20px;
}

.second-section-text-box .eyebrow {
  color: #d86c34;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 600;
}

.second-section-text-box p {
  color: white;
  font-size: 48px;
  line-height: 1.6;
  max-width: 800px;
  font-weight: bold;
}

/* Third Section - Text Left, Image Right */
.third-section {
  width: 100%;
  background-color: #14263d;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.third-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  gap: 40px;
}

.third-section-text-box {
  flex: 1;
  padding: 20px;
}

.third-section-text-box .eyebrow {
  color: #d86c34;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 600;
}

.third-section-text-box p {
  color: white;
  font-size: 48px;
  line-height: 1.6;
  max-width: 800px;
  font-weight: bold;
}

.third-section-image-box {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.third-section-image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* -- Responsive Design -- */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; }
  .hero-text { font-size: 36px; }
  .cards-container { flex-direction: column; width: 90%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h3 {
    text-align: center;
  }
  
  .footer-column p, 
  .footer-column a {
    text-align: center;
  }
  .process-steps { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
  }
  
  /* Industry Cards Tablet Styles */
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .industry-card .overlay {
    font-size: 24px;
    padding: 12px;
    line-height: 1.2;
  }
  
  /* Specific style for manufacturing card text on tablet */
  .industry-card:nth-child(6) .overlay {
    font-size: 22px;
  }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  /* Header - Standardized mobile header behavior */
  #site-header { 
    flex-direction: row; 
    padding: 1rem;
    position: relative;
    justify-content: space-between;
  }
  .logo { 
    width: auto;
    text-align: left;
  }
  .logo img { 
    height: 60px;
    width: auto;
    margin: 0;
  }
  nav { 
    width: auto;
    margin: 0;
    position: relative;
  }
  .nav-link { 
    font-size: 0.9rem; 
  }
  .login-button, .upload-button {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  /* Hamburger menu for mobile */
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
  }

  /* Hero and main content */
  .hero-box { 
    margin: 20px auto; 
    padding: 20px; 
    width: 90%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }
  .hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }
  .hero-text { 
    font-size: 28px; 
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif;
    order: 1;
  }
  .hero-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-cta .login-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 20px;
    font-size: 20px;
  }
  
  /* No Admin Section Mobile Styles */
  .no-more-admin-section {
    padding: 40px 20px;
  }
  .no-more-admin-container {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .no-more-admin-text-box {
    text-align: left;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .no-more-admin-image-box {
    display: none;
  }
  .no-more-admin-text-box .eyebrow {
    font-size: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .no-more-admin-text-box h2 {
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .no-more-admin-text-box p {
    font-size: 42px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }
  
  /* Second Section Mobile Styles */
  .second-section {
    padding: 40px 20px;
  }
  .second-section-container {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .second-section-image-box {
    display: none;
  }
  .second-section-text-box {
    text-align: right;
    width: 100%;
    padding: 0 15px 0 8px;
    box-sizing: border-box;
  }
  .second-section-text-box .eyebrow {
    font-size: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .second-section-text-box p {
    font-size: 42px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }
  
  /* Third Section Mobile Styles */
  .third-section {
    padding: 40px 20px;
  }
  .third-section-container {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .third-section-image-box {
    display: none;
  }
  .third-section-text-box {
    text-align: left;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .third-section-text-box .eyebrow {
    font-size: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .third-section-text-box p {
    font-size: 42px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
  }
  
  /* Process CTA Mobile Styles */
  .process-cta {
    text-align: center;
    margin-top: 30px;
    width: 100%;
  }
  .process-cta p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .process-cta .login-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 20px;
    font-size: 20px;
    display: inline-block;
  }
  .hero-bg h2 { 
    font-size: 48px; 
  }
  
  /* Cards and grids */
  .cards-container {
    flex-direction: column;
    width: 90%;
  }
  .card {
    min-width: 0;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    padding: 20px; 
  }
  .card-image { 
    margin-bottom: 15px; 
  }
  .stats-grid { 
    grid-template-columns: 1fr; 
    width: 95%; 
  }
  .pricing-grid { 
    grid-template-columns: 1fr; 
  }
  .pricing-card { 
    padding: 20px; 
  }
  
  /* Industry section */
  .industry-grid-section {
    flex-direction: column;
  }
  .industry-grid,
  .industry-text-box {
    width: 100%;
  }
  .industry-grid { 
    grid-template-columns: 1fr; 
  }
  .industry-text-box h2 {
    font-size: 36px;
    margin-bottom: 35px;
  }
  .industry-list li {
    font-size: 11px;
  }
  
  /* Process section */
  .process-steps { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .process-header h2 { 
    font-size: 28px; 
  }
  
  /* Ebook section */
  .ebook-container { 
    flex-direction: column; 
    text-align: center; 
  }
  .ebook-content h2 { 
    font-size: 28px; 
  }
  
  /* Contact and forms */
  .contact-section { 
    padding: 40px 0; 
  }
  .contact-form { 
    padding: 15px; 
    width: 90%;
    margin: 0 auto;
  }
  .contact-grid {
    width: 100%;
    padding: 0 40px;
  }
  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }
  
  /* reCAPTCHA Mobile Styles */
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    margin: 10px 0;
  }
  
  /* Submit Button Mobile Styles */
  .submit-button {
    display: block;
    margin: 20px auto 0;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px 20px;
    font-size: 18px;
  }
  
  /* Content with image layouts */
  .content-with-image {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  /* Footer */
  .footer-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .social-links { 
    justify-content: center; 
  }
  
  /* Other elements */
  .separator-angle, .separator-angle-up { 
    height: 50px; 
    margin-top: -1px; 
  }
  .faq-question { 
    font-size: 18px; 
  }
  
  /* FAQ Header Mobile Styles */
  .faq-header h2 {
    font-size: 40px;
  }
  
  /* Login page specific */
  .login-container {
    padding: 20px;
  }
  .login-card {
    padding: 20px;
    width: 100%;
  }
  .login-card h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Upload page specific */
  .upload-container {
    padding: 20px;
    min-height: calc(100vh - 200px);
  }
  .upload-card {
    padding: 20px;
    width: 100%;
  }
  .upload-card h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .drop-zone {
    padding: 20px;
  }
  
  /* Hide upload page nav links */
  #upload-page .nav-links {
    display: none !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; }
  .hero-text { 
    font-size: 28px; 
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif;
  }
  .hero-cta {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-cta .login-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 16px;
    font-size: 18px;
  }
  
  /* No Admin Section Small Mobile Styles */
  .no-more-admin-text-box .eyebrow {
    font-size: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .no-more-admin-text-box h2 {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .no-more-admin-text-box p {
    font-size: 38px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.1;
  }
  
  /* Second Section Small Mobile Styles */
  .second-section-text-box .eyebrow {
    font-size: 22px;
  }
  .second-section-text-box p {
    font-size: 38px;
  }
  
  /* Third Section Small Mobile Styles */
  .third-section-text-box .eyebrow {
    font-size: 22px;
  }
  .third-section-text-box p {
    font-size: 38px;
  }
  .hero-bg h2 { 
    font-size: 36px; 
  }
  .stats-grid strong { 
    font-size: 36px; 
  }
  .stats-grid span { 
    font-size: 16px; 
  }
  .pricing-card .price { 
    font-size: 36px; 
  }
  .process-steps { 
    grid-template-columns: 1fr; 
  }
  .ebook-content h2 { 
    font-size: 24px; 
  }
  .login-card h1 {
    font-size: 20px;
  }
  .upload-card h1 {
    font-size: 20px;
  }
  
  /* FAQ Header Small Mobile Styles */
  .faq-header h2 {
    font-size: 36px;
  }
  
  /* Process CTA Small Mobile Styles */
  .process-cta p {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .process-cta .login-button {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 16px;
    font-size: 18px;
    display: inline-block;
  }
  
  /* Contact Form Small Mobile Styles */
  .contact-form { 
    padding: 12px; 
    width: 90%;
    margin: 0 auto;
  }
  .contact-grid {
    width: 100%;
    padding: 0 20px;
  }
  
  /* reCAPTCHA Small Mobile Styles */
  .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
    margin: 8px 0;
  }
  
  /* Submit Button Small Mobile Styles */
  .submit-button {
    display: block;
    margin: 15px auto 0;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 12px 16px;
    font-size: 16px;
  }
}

/* --- Ebook page: Lead-Magnet Two-Column Layout --- */
.lead-magnet-container {
  display: flex;
  flex-wrap: wrap;    /* stacks on narrow screens */
  gap: 2rem;          /* space between columns */
  max-width: 1200px;
  margin: 0 auto;     /* center on page */
  padding: 2rem 0;
}

.lead-magnet-container .form-box,
.lead-magnet-container .image-box {
  flex: 1 1 300px;    /* grow, shrink, min-width */
}

.lead-magnet-container .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-magnet-container .image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* --- Login page specific styles --- */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.login-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-card h1 {
  font-size: 28px;
  margin-bottom: 30px;
}

.link {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #d86c34;
  text-decoration: none;
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}



/* --- Signup page specific styles --- */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #14263d;
  text-align: center;
}

.contact-header p {
  font-size: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.industry-header-box h2.eyebrow {
  font-size: 24px;
  color: #d86c34;
  margin-bottom: 10px;
  text-align: left;
}

ul, ol {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: left;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 50%;
  margin: 0 auto;
}

.form-group label .required {
  color: red;
  margin-left: 4px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.mandatory-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Two-column layout: force both cards to same height */
.content-with-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* Image column: fill cell and center the artwork */
.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Prevent the <img> from overflowing */
.content-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}



/* --- Upload page specific styles --- */
#upload-page .nav-links {
  display: none !important;
}

.upload-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.upload-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.upload-card h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.drop-zone {
  border: 2px dashed #d86c34;
  border-radius: 10px;
  padding: 40px 20px;
  background-color: #fff8f3;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

.drop-zone:hover {
  background-color: #fff0e6;
}

.drop-zone p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.file-label {
  display: inline-block;
  margin-top: 15px;
  color: #d86c34;
  cursor: pointer;
  font-weight: bold;
}

.file-input {
  display: none;
}

.upload-info {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}



/* -- Ebook Section -- */
.ebook-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.ebook-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.ebook-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ebook-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ebook-content {
  flex: 1;
  padding: 20px;
}

.ebook-content h2 {
  color: #14263d;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.4;
}

.ebook-button {
  display: inline-block;
  background-color: #d86c34;
  color: white;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.ebook-button:hover {
  background-color: #c55a24;
  text-decoration: none;
  color: white;
}

/* === MOBILE OVERRIDES === */
@media (max-width: 768px), (max-width: 480px) {
  /* 1) Hero headline fixed size on all phones/tablets */
  .hero-text {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  /* 2) Equal left/right padding in No-More-Admin text */
  .no-more-admin-text-box {
    padding: 0 16px !important;
    box-sizing: border-box;
  }

  /* 3) Contact form width matching FAQ card width */
  .contact-form {
    width: 80% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }
}

/* === MOBILE OVERRIDES FIX === */
@media (max-width: 768px), (max-width: 480px) {
  /* Center the contact form */
  .contact-grid {
    justify-content: center !important;
  }
  .contact-form {
    width: 80% !important;
    max-width: none !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Prevent No-Admin text from spilling off screen */
  .no-more-admin-text-box {
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  .no-more-admin-text-box h2,
  .no-more-admin-text-box p {
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}

@media (max-width: 768px) {
  /* 1) Global box-sizing */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* 2) Pad the no-admin container */
  .no-more-admin-container {
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  /* 3) Safe word-break for long text */
  .no-more-admin-text-box p {
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
  }
}

/* === MOBILE FORM & reCAPTCHA FIX === */
@media (max-width: 768px) {
  /* 1) Ensure the grid wrapper has side padding & full width */
  .contact-grid {
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    justify-content: center !important;
  }

  /* 2) Stretch the form to fill its wrapper */
  .contact-form {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* 3) Shrink & center the reCAPTCHA widget */
  .g-recaptcha {
    max-width: 100% !important;
    transform: scale(0.85) !important;
    transform-origin: 0 0 !important;
    margin: 10px auto !important;
    overflow: hidden !important;
  }
}

/* === MOBILE INDUSTRY CARD FIX === */
@media (max-width: 768px) {
  /* 1) Let the entire industry section fill the screen */
  .industry-grid-section {
    width: 100% !important;
    max-width: none !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* 2) Make the text-box card span full width and add breathing room */
  .industry-text-box {
    width: 100% !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  /* 3) Drop the headline one size for better fit */
  .industry-text-box h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  /* Further shrink on extra-small screens */
  .industry-text-box h2 {
    font-size: 24px !important;
  }
}

/* === MOBILE FAQ CARD WIDTH FIX === */
@media (max-width: 768px) {
  /* 1) Force a single-column grid and center its items */
  .faq-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    justify-items: center !important;
  }

  /* 2) Stretch each FAQ card to the contact form's max-width */
  .faq-item {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    padding: 0 12px !important;
  }
}

/* === TABLET: CENTER LAST PROCESS-STEP UNDER TWO-COLUMN GRID === */
@media (max-width: 1024px) {
  /* Move the 5th box to span both columns and center it */
  .process-steps > .process-step:last-child {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }
}

/* === TABLET: INDUSTRY OVERLAY PADDING === */
@media (max-width: 1024px) {
  /* Give all industry overlay captions more breathing room */
  .industry-card .overlay {
    padding: 20px !important;
    box-sizing: border-box !important;
  }
}

/* === TABLET: CENTER SOCIAL ICONS IN FOOTER === */
@media (max-width: 1024px) {
  .footer-bottom,
  .social-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* === TABLET & MOBILE: SHRINK SPECIFIC INDUSTRY OVERLAY TEXT === */
@media (max-width: 1024px) {
  /* Construction (1), Manufacturing (6), Warehousing (8) */
  .industry-card:nth-child(1) .overlay,
  .industry-card:nth-child(6) .overlay,
  .industry-card:nth-child(8) .overlay {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 480px) {
  .industry-card:nth-child(1) .overlay,
  .industry-card:nth-child(6) .overlay,
  .industry-card:nth-child(8) .overlay {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
}

/* === TABLET HERO IMAGE & GLOBAL FOOTER FIX === */
@media (max-width: 1024px) {
  /* 1) Hero Box: use same tablet layout as mobile but only for widths ≤1024px */
  .hero-box {
    width: 90% !important;
    margin: 20px auto !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-image img {
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }
  .hero-text {
    order: 1 !important;
  }

  /* 2) Footer: same 2-column, centered style everywhere on tablet */
  .footer-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    padding: 0 16px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  .social-links {
    justify-content: center !important;
    margin-top: 20px !important;
  }
  .footer-bottom {
    text-align: center !important;
    padding-top: 20px !important;
  }
}


/* ——— desktop hero two-column fix ——— */
@media (min-width: 769px) {
  .hero-box {
    /* ensure padding isn't pushing you past 100vw */
    padding: 40px 20px !important;
    box-sizing: border-box !important;

    /* force each 1fr to never go below 0 */
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 40px !important;
  }

  .hero-image {
    /* pin the image container flush to the right side */
    justify-self: end !important;
    /* hide any stray overflow */
    overflow: hidden !important;
  }

  .hero-image img {
    /* fill its column but never overflow it */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
  }
}

/* === HIDE FOOTER ON LOGIN & UPLOAD PAGES === */
body#login-page .footer,
body#upload-page .footer,
body#login-page footer,
body#upload-page footer {
  display: none !important;
}

/* === TERMS OF SERVICE PAGE STYLES === */
.terms-content {
  padding: 120px 20px 80px;
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, #14263d 0%, #1e3a5f 100%);
  color: white;
}

.terms-content .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #d86c34;
  text-align: center;
  font-weight: 700;
}

.terms-placeholder {
  line-height: 1.6;
}

.terms-placeholder p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.terms-placeholder strong {
  color: #d86c34;
  font-weight: 600;
}

.terms-placeholder ul {
  margin: 20px 0;
  padding-left: 30px;
}

.terms-placeholder li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.terms-placeholder a {
  color: #d86c34;
  text-decoration: none;
  font-weight: 500;
}

.terms-placeholder a:hover {
  text-decoration: underline;
}

/* Mobile responsive styles for terms page */
@media (max-width: 768px) {
  .terms-content {
    padding: 100px 15px 60px;
  }
  
  .terms-content .container {
    padding: 25px;
  }
  
  .terms-content h1 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .terms-placeholder p,
  .terms-placeholder li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 90px 10px 50px;
  }
  
  .terms-content .container {
    padding: 20px;
    margin: 0 10px;
  }
  
  .terms-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

