.navigation-button {
  border: 1px solid var(--roborx-contrast-color);
  background-color: var(--roborx-contrast-color);
  color: #202020;
  border-radius: 4px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 72px;
  padding: 10px 20px;
  transition: background-color 0.2s, color 0.2s;
  display: block;
  text-decoration: none;
}

.navigation-button:hover {
  background-color: var(--white);
  color: #000;
}
:root {
  --roborx-main-color: #b129cc;
  --roborx-contrast-color: #56d6b6;
  --roborx-bg-color: #ede0ff;
  --white: white;
  --dark-grey: #b3b3b3;
  --bg-grey: #fafafa;
  --black: #000;
  --medium-sea-green: #5ab963;
}

body {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
}

/* Header Styles */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.image-3 {
  margin-left: 36px;
}

.image-5 {
  margin-left: 10px;
  margin-right: 12px;
}

.div-block-2 {
  flex: 1;
}

/* Main Content Styles */
.main-content {
  max-width: 100%;
  overflow: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.article-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: -0.5px;
}

.article-meta {
  color: #666;
  font-size: 16px;
  margin-bottom: 15px;
}

.article-meta .separator {
  margin: 0 10px;
}

/* Content Section Styles */
.article-content {
  margin-bottom: 60px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #222;
}

.content-section {
  margin-bottom: 50px;
}

.introduction p:first-child {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 30px;
}

/* Lists */
.article-content ul,
.article-content ol {
  margin: 25px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 15px;
}

.call-categories,
.impact-list,
.workarounds-list,
.process-list,
.benefits-list {
  list-style-position: outside;
}

/* Blockquotes */
.testimonial {
  background-color: var(--roborx-bg-color);
  border-left: 5px solid var(--roborx-main-color);
  padding: 25px 30px;
  margin: 35px 0;
  font-style: italic;
  color: #333;
  border-radius: 4px;
}

.testimonial p {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #666;
}

/* Product Section */
.product-intro {
  background-color: var(--roborx-bg-color);
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.product-intro .section-title {
  color: var(--roborx-main-color);
  margin-top: 0;
}

/* FAQ Section */
.faq-section {
  margin-top: 70px;
  background-color: #f9f5ff;
  padding: 30px;
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.faq-answer p {
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

/* CTA Section */
.cta-section {
  background-color: var(--roborx-bg-color);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin: 50px 0;
}

.cta-section .section-title {
  color: var(--roborx-main-color);
}

.cta-button {
  display: inline-block;
  background-color: var(--roborx-contrast-color);
  color: #222;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 4px;
  transition: background-color 0.2s;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: var(--white);
  border: 1px solid var(--roborx-contrast-color);
}

/* Footer Styles */
.site-footer {
  background-color: #fff;
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-mission {
  font-size: 16px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin-bottom: 30px;
}

.copyright p {
  font-size: 14px;
  color: #999;
  text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .article-title {
    font-size: 36px;
  }

  .container {
    max-width: 728px;
  }

  .navigation-button {
    margin-right: 20px;
    white-space: nowrap;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .article-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 24px;
    margin-top: 40px;
  }

  .container {
    padding: 0 25px;
  }

  .testimonial {
    padding: 15px 20px;
  }

  .navigation-button {
    margin-right: 15px;
    padding: 8px 15px;
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .article-title {
    font-size: 26px;
  }

  .article-meta {
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
  }

  .product-intro,
  .cta-section {
    padding: 20px;
  }

  .navigation-button {
    margin-right: 10px;
    padding: 6px 12px;
    font-size: 14px;
  }

  /* Footer adjustments for very small screens */
  .link-footer {
    display: block;
    margin: 8px auto;
  }
}

/* Calendar Section Styles - No longer needed */
.calendar-section {
  display: none;
}

/* Footer Styles */
.footer {
  display: flex;
  padding: 40px 20px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.image-6 {
  margin-right: 10px;
}

.text-footer-credits {
  margin-right: 20px;
  color: #666;
  font-size: 14px;
}

.div-block-3 {
  width: 1px;
  height: 20px;
  margin-right: 20px;
  background-color: white;
  display: block;
}

.link-footer {
  margin-right: 20px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.link-footer:hover {
  color: var(--roborx-main-color);
  text-decoration: underline;
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  background-color: var(--roborx-contrast-color);
  color: #222;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 4px;
  transition: background-color 0.2s;
  margin-top: 20px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--white);
  border: 1px solid var(--roborx-contrast-color);
}

/* Remove the site-footer styles since we're using the homepage footer */
.site-footer {
  display: none;
}

/* Main Section Styles */
.main-section {
  padding: 60px 0;
}

/* Responsive Styles for Footer and Calendar */
@media screen and (max-width: 767px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .image-6 {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .text-footer-credits {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .div-block-3 {
    display: none;
  }

  .link-footer {
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .calendly-inline-widget {
    height: 600px;
  }
}

/* Add styles for body text using Open Sans */
.article-content p,
.article-content li,
.article-content ul,
.article-content ol {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 24px;
  font-size: 18px;
}

.article-content p {
  max-width: 70ch;
}

/* Keep testimonial text in Open Sans but preserve styling */
.testimonial p {
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-style: italic;
}

/* Logo Link Styles */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

/* Add anchor links styling */
.article-content h2,
.article-content h3 {
  scroll-margin-top: 100px;
}

/* Add a subtle highlight for code or important text */
.article-content code,
.article-content .highlight {
  background-color: #f0f0f0;
  padding: 2px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

/* Add table styling for better readability */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.article-content th,
.article-content td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.article-content th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.article-content tr:hover {
  background-color: #f9f9f9;
}
