/* Global CSS Variables and Base Styles */

:root {
  --primary-color: #0E629D;
  --secondary-color: #222;
  --accent-color: #555;
  --gray-100: #B6B6B6;
  --gray-200: #6C6C6C;
  --gray-300: #323232;
  --gray-400: #2B2B2B;
  --gray-500: #181818;
  --gray-900: #1D1D1D;
  --font-family-base: 'Inter', Arial, sans-serif;
  --font-size-base: 16px;
  --border-radius-base: 6px;
  --transition-base: 0.2s cubic-bezier(.4,0,.2,1);
}


body {
  background: #fff;
  color: var(--secondary-color);
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover, a:focus {
  color: var(--accent-color);
}

.global__btn_primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}

.global__btn_primary a {
    padding: 5px 10px;
    color: #fff;
}

.section__title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}
.section__title::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
}
.section__subtitle {
    font-size: 1.6rem;
    color: #cccccc;
    margin-bottom: 2.5em;
}

.section__title::after {
  content: "";
  display: block;
  width: 90%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -5px;
}

.center_text .section__title::after {
  left: 50%;
  margin-left: -45%;
}

.center_text {
  text-align: center;
}

.hidden-desktop {
    display: none;
}
    
@media (max-width: 900px) {
  .section__title {
    font-size: 3.5rem;
  }
  .section__subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .hidden-desktop {
    display: block;
  }
  
  .hidden-mobile {
    display: none;
  }

  .section__title {
    font-size: 3rem;
  }
  .section__subtitle {
    font-size: 1.5rem;
  }
}
/* Add more global resets, utility classes, and variables as needed */
