/* Import the main style.css for base styles and variables */
@import url('style.css');

/* Specific styles for the About Us page, maintaining consistency with concierge.css/activation.css */

/* Root variables can be redefined here if specific overrides are needed,
   but for consistency, it's better to rely on imported style.css or a shared variables file. */
:root {
  --primary: #2DAE4F;
  --primary-dark: #1B5E20;
  --light-bg: #F8FCF9; /* A slightly different light background than main style.css but consistent with concierge.css */
  --white: #FFFFFF;
  --dark-text: #1C1C1C;
  --muted-text: #666666;
  --max-width-internal: 1200px; /* Using a different variable name to avoid conflict if main style.css is linked */
  --transition: 0.3s ease-in-out;
  --radius: 12px;
}

/* Base body styles (will be largely covered by imported style.css) */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-bg); /* Using the light-bg from this file for consistency with other internal pages */
  color: var(--dark-text);
  line-height: 1.6;
}

/* Main container override to use the internal page max-width */
.container {
  max-width: var(max-with);
  margin: 0 auto;
  padding: 2rem 1rem; /* Adjust padding as needed */
}

/* Standardized hero section for internal pages */
.hero-section {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 12rem 1rem 2rem; /* Consistent padding with other service pages */
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-section .subheading {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Uniform service block styling for internal pages */
.service-detail {
  padding: 3rem 1rem; /* Consistent padding with other service pages */
}

.service-block {
  background-color: var(--white);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-block h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.service-block p {
  color: var(--muted-text);
  font-size: 1rem;
}

/* Styling for lists within service blocks (e.g., Why Brands Trust GRIPPX) */
.service-block ul {
  list-style: none; /* Remove default list style */
  padding-left: 0; /* Remove default padding */
  margin-top: 1rem;
  color: var(--muted-text);
}

.service-block ul li {
  margin-bottom: 0.5rem;
  display: flex; /* For icon alignment */
  align-items: center;
  gap: 0.5rem; /* Space between icon and text */
}

.service-block ul li .fas {
  color: var(--primary); /* Icon color */
}

/* Consistent CTA styling for internal pages */
.cta-container {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem; /* Add some margin at the bottom before the footer */
}

.cta-button-large {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color var(--transition);
}

.cta-button-large:hover {
  background-color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .service-block {
    padding: 1.5rem;
  }

  /* Assuming navigation is handled by script.js and style.css for mobile */
}
