/* style/tintc.css */

/* --- Base Styles --- */
.page-tintc {
  font-family: Arial, sans-serif;
  color: var(--text-secondary); /* Default text color for main content */
  background-color: var(--bg-color); /* Page background from custom colors */
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-tintc__dark-section {
  background-color: var(--card-bg); /* Darker background for contrast sections */
  color: var(--text-main);
}

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-tintc__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* --- Buttons --- */
.page-tintc__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: var(--text-main); /* White text for primary button */
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none; /* No border for primary button */
  cursor: pointer;
}

.page-tintc__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background-color: transparent;
  color: var(--primary-color); /* Main color for secondary button text */
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color); /* Main color for secondary button border */
  cursor: pointer;
}

.page-tintc__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-tintc__btn-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-tintc__btn-text:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* --- Hero Section --- */
.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  min-height: 600px; /* Ensure hero section has a decent height */
}