/** Shopify CDN: Minification failed

Line 133:13 Expected identifier but found whitespace
Line 133:15 Unexpected "{"
Line 133:24 Expected ":"
Line 133:78 Unterminated string token
Line 137:8 Expected identifier but found whitespace
Line 137:10 Unexpected "{"
Line 137:19 Expected ":"
Line 137:68 Unterminated string token
Line 141:8 Expected identifier but found whitespace
Line 141:10 Unexpected "{"
... and 14 more hidden warnings

**/
.it-audit-section {
  padding: 60px 20px;
  background: transparent;
}

.it-audit-container {
  max-width: 1400px;
  margin: 0 auto;
}

.it-audit-content {
  background: var(--background-color, #e1f4e1);
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: solid 4px #000000;
}

.it-audit-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--title-color, #44b449);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.it-audit-description {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color, #333333);
  line-height: 1.5;
  margin: 0 0 30px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.it-audit-description p {
  margin: 0 0 8px 0;
}

.it-audit-description p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  color: var(--highlight-color, #44b449);
  font-weight: 600;
}

.it-audit-button {
  display: inline-block;
  background: var(--button-bg-color, #44b449);
  color: var(--button-text-color, #ffffff);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.it-audit-button:hover {
  background: #3a9a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(68, 180, 73, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .it-audit-section {
    padding: 40px 15px;
  }

  .it-audit-content {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .it-audit-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .it-audit-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .it-audit-button {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .it-audit-content {
    padding: 25px 20px;
  }

  .it-audit-title {
    font-size: 20px;
  }

  .it-audit-description {
    font-size: 13px;
  }
}

/* CSS Custom Properties for Theme Editor */
.it-audit-content {
  background: {{ section.settings.background_color | default: '#E1F4E1\' }};;;
}

.it-audit-title {
  color: {{ section.settings.title_color | default: '#44B449\' }};;;
}

.it-audit-description {
  color: {{ section.settings.text_color | default: '#333333\' }};;;
}

.highlight-text {
  color: {{ section.settings.highlight_color | default: '#44B449\' }};;;
}

.it-audit-button {
  background: {{ section.settings.button_bg_color | default: '#44B449\' }};
  color: {{ section.settings.button_text_color | default: '#FFFFFF\' }};;;
}
