:root {
    --color-primary: #ff7700;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-dark: #1a1a1a;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
  }

  .page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background-color: var(--color-white); /* From Figma style_1 */
    position: relative;
    overflow: hidden; /* From Figma style_1 */
  }

  .background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .background-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  header, main, footer {
    position: relative;
    z-index: 1;
  }

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

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

  h1, h2, h3 {
    margin: 0;
    font-weight: 700;
  }

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
  }