/* style/index-core-business.css */

/* Custom CSS Variables for this page */
:root {
  --primary-color: #26A9E0; /* Brand Blue */
  --secondary-color: #FFFFFF; /* White */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #26A9E0;
  --bg-light: #ffffff;
  --login-color: #EA7C07;
  --black-color: #000000;
}

/* Base styles for the page content */
.page-index-core-business {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--secondary-color); /* Default background for main content, from shared.css */
  overflow-x: hidden; /* Prevent horizontal scroll for the main content */
}

.page-index-core-business__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-index-core-business__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-index-core-business__section-title--white {
  color: var(--text-light);
}

.page-index-core-business__paragraph {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-core-business__paragraph--white {
  color: var(--text-light);
}

.page-index-core-business__paragraph--dark {
  color: var(--text-dark);
}

/* Background colors for sections */
.page-index-core-business__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-index-core-business__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* Card styles */
.page-index-core-business__card {
  background-color: var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-core-business__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-core-business__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index-core-business__card-title--dark {
  color: var(--text-dark);
}

/* Button styles */
.page-index-core-business__cta-button,
.page-index-core-business__btn-primary,
.page-index-core-business__btn-secondary,
.page-index-core-business a[class*="button"],
.page-index-core-business a[class*="btn"] {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box; /* Include padding in width calculation */
}}