:root {
  --primary-color: #125ca7;
  --text-color-main: rgba(0, 0, 0, 0.8);
  --text-color-light: rgba(0, 0, 0, 0.5);
  --text-color-extra-light: rgba(0, 0, 0, 0.6);
  --background-light: #f6f7fb;
  --background-footer: #eef1f5;
  --white: #ffffff;
  --border-color: #d9d9d9;
  /* Footer color variables to match home page */
  --text-dark: rgba(0, 0, 0, 0.8);
  --text-medium: rgba(0, 0, 0, 0.7);
  --text-light: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-light);
  color: var(--text-color-main);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Removed generic button styles that conflict with header.css */
/* If page-specific buttons are needed, use more specific selectors like .content .btn */

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}