/* style/index.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: var(--dark-bg-1, #0d0d0d); /* Assuming shared --dark-bg-1 is dark */
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.2);
}

.page-index {
  color: var(--text-light); /* Default text color for the page content, assuming dark body background */
  background-color: transparent; /* Main content background is transparent to show body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

/* --- General Section Styles --- */
.page-index__section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure no horizontal overflow */
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__main-title,
.page-index__brand-title,
.page-index__faq-main-title,
.page-index__blog-title {
  color: var(--secondary-color); /* Use gold for main titles */
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index__section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-light); /* Default paragraph color */
}

/* --- CTA Buttons --- */
.page-index__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure text wraps */
}

.page-index__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}