/* Tgoldenvalley - Main Stylesheet
   Version: 1.0
   Date: 2026-01-23
   Author: Tgoldenvalley Design Team
   Description: Custom styles for corporate training programs website
*/

/* ======================================
   TABLE OF CONTENTS
   ======================================
   1. CSS Reset & Base Styles
   2. Typography
   3. Layout & Grid
   4. Navigation & Header
   5. Footer
   6. Buttons & CTAs
   7. Forms & Inputs
   8. Cards & Containers
   9. Hero Sections
   10. Data Visualization Components
   11. FAQ Sections
   12. Tooltips & Popovers
   13. Modal Windows
   14. Cookie Consent
   15. Animations & Transitions
   16. Utility Classes
   17. Media Queries
   18. Page-Specific Styles
      18.1 Home Page
      18.2 About Page
      18.3 Trainings Page
      18.4 Contacts Page
      18.5 Analytics & Reporting Page
      18.6 Thank You Page
      18.7 Legal Pages
   19. Print Styles
   20. Accessibility Enhancements
   ====================================== */

/* ======================================
   1. CSS Reset & Base Styles
   ====================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; 
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #F9F9F9;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: #1A4D7C;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover, a:focus {
  color: #F39237;
  text-decoration: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}


:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid #F39237;
  outline-offset: 2px;
}

/* ======================================
   2. Typography
   ====================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1A4D7C;
}

h1 {
  font-size: 4.2rem;
  margin-bottom: 3rem;
}

h2 {
  font-size: 3.6rem;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

h4 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

h5 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h6 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 2rem;
  max-width: 70ch;
}

.lead {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #1A4D7C;
}

.text-secondary {
  color: #3A7CA5;
}

.text-accent {
  color: #F39237;
}

.text-success {
  color: #2E8B57;
}

.text-danger {
  color: #D64045;
}

.text-light {
  color: #F5F7FA;
}

.text-dark {
  color: #333;
}

.text-muted {
  color: #6c757d;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #3A7CA5;
  margin-bottom: 2.5rem;
}

blockquote {
  border-left: 4px solid #F39237;
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

.caption {
  font-size: 1.4rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.highlight {
  background-color: rgba(243, 146, 55, 0.2);
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}

/* ======================================
   3. Layout & Grid
   ====================================== */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}

.col {
  flex: 1 0 0%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

.order-first { order: -1; }
.order-last { order: 13; }
.order-0 { order: 0; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }

.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.align-items-center { align-items: center; }
.align-items-baseline { align-items: baseline; }
.align-items-stretch { align-items: stretch; }

.section {
  padding: 8rem 0;
  position: relative;
}

.section-sm {
  padding: 4rem 0;
}

.section-lg {
  padding: 12rem 0;
}

.section-alt {
  background-color: #EBEEF2;
}

.section-dark {
  background-color: #1A4D7C;
  color: #fff;
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4, 
.section-dark h5, 
.section-dark h6 {
  color: #fff;
}

.section-accent {
  background-color: rgba(243, 146, 55, 0.1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 3rem;
}

.gap-0 { grid-gap: 0; }
.gap-1 { grid-gap: 1rem; }
.gap-2 { grid-gap: 2rem; }
.gap-3 { grid-gap: 3rem; }
.gap-4 { grid-gap: 4rem; }
.gap-5 { grid-gap: 5rem; }

.grid-col-span-1 { grid-column: span 1; }
.grid-col-span-2 { grid-column: span 2; }
.grid-col-span-3 { grid-column: span 3; }
.grid-col-span-4 { grid-column: span 4; }
.grid-col-span-5 { grid-column: span 5; }
.grid-col-span-6 { grid-column: span 6; }
.grid-col-span-7 { grid-column: span 7; }
.grid-col-span-8 { grid-column: span 8; }
.grid-col-span-9 { grid-column: span 9; }
.grid-col-span-10 { grid-column: span 10; }
.grid-col-span-11 { grid-column: span 11; }
.grid-col-span-12 { grid-column: span 12; }

.flex-container {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* ======================================
   4. Navigation & Header
   ====================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 4rem;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #1A4D7C;
  cursor: pointer;
  z-index: 1001;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  margin: 0 1.5rem;
  position: relative;
}

.nav-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: #1A4D7C;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F39237;
  transition: width 0.3s ease;
}

.nav-link:hover, 
.nav-link:focus,
.nav-link.active {
  color: #F39237;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-left: 3rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #1A4D7C;
}

.contact-phone i {
  margin-right: 0.8rem;
  color: #F39237;
}

.header-cta {
  margin-left: 2rem;
}

.header-action {
  display: flex;
  align-items: center;
}

/* ======================================
   5. Footer
   ====================================== */
.footer {
  background-color: #1A4D7C;
  color: #fff;
  padding: 6rem 0 3rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4rem;
}

.footer-logo {
  display: block;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 4rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  max-width: 30rem;
}

.footer-heading {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5rem;
  height: 2px;
  background-color: #F39237;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #F39237;
}

.footer-contact {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: #F39237;
  font-size: 1.8rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.contact-text {
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav-item {
  margin-left: 2rem;
}

.footer-nav-link {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #F39237;
}

/* ======================================
   6. Buttons & CTAs
   ====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 0.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: -1;
}

.btn:hover::after,
.btn:focus::after {
  width: 300%;
  height: 300%;
}

.btn i {
  margin-right: 1rem;
}

.btn-primary {
  background-color: #1A4D7C;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #15406A;
  color: #fff;
}

.btn-secondary {
  background-color: #3A7CA5;
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #306890;
  color: #fff;
}

.btn-accent {
  background-color: #F39237;
  color: #fff;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #E07F20;
  color: #fff;
}

.btn-outline-primary {
  background-color: transparent;
  color: #1A4D7C;
  border-color: #1A4D7C;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #1A4D7C;
  color: #fff;
}

.btn-outline-accent {
  background-color: transparent;
  color: #F39237;
  border-color: #F39237;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background-color: #F39237;
  color: #fff;
}

.btn-lg {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
}

.cta-container {
  text-align: center;
  margin: 4rem 0;
}

.cta-container .btn {
  margin: 0 1rem;
}

/* ======================================
   7. Forms & Inputs
   ====================================== */
.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #1A4D7C;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #3A7CA5;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 124, 165, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

textarea.form-control {
  height: auto;
  min-height: 12rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-check-input {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
  appearance: none;
  background-color: #fff;
  border: 1px solid #adb5bd;
  border-radius: 0.3rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input:checked {
  background-color: #1A4D7C;
  border-color: #1A4D7C;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
}

.form-check-input:focus {
  border-color: #3A7CA5;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 124, 165, 0.25);
}

.form-check-label {
  font-size: 1.5rem;
}

.form-text {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #6c757d;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #D64045;
  padding-right: 4rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23D64045'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23D64045' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.5rem 1.5rem;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #D64045;
  box-shadow: 0 0 0 0.2rem rgba(214, 64, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: #D64045;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 1rem;
  padding-left: 1rem;
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}

/* ======================================
   8. Cards & Containers
   ====================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-img-top {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.card-body {
  flex: 1 1 auto;
  padding: 2.5rem;
}

.card-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card-subtitle {
  font-size: 1.6rem;
  color: #6c757d;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.card-text {
  margin-bottom: 2rem;
}

.card-footer {
  padding: 1.5rem 2.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-link {
  font-weight: 500;
}

.card-link + .card-link {
  margin-left: 1.5rem;
}

.card-header {
  padding: 1.5rem 2.5rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 2.4rem;
}

.card-accent {
  border-top: 3px solid #F39237;
}

.card-primary {
  border-top: 3px solid #1A4D7C;
}

.card-secondary {
  border-top: 3px solid #3A7CA5;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}

.box {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.box-accent {
  border-left: 4px solid #F39237;
}

.box-primary {
  border-left: 4px solid #1A4D7C;
}

.feature-box {
  padding: 3rem;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  background-color: rgba(243, 146, 55, 0.1);
  color: #F39237;
  border-radius: 50%;
  font-size: 3rem;
}

.feature-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* ======================================
   9. Hero Sections
   ====================================== */
.hero {
  position: relative;
  padding: 12rem 0 8rem;
  background-color: #EBEEF2;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1A4D7C;
}

.hero-subtitle {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: #3A7CA5;
}

.hero-text {
  font-size: 1.8rem;
  max-width: 60rem;
  margin-bottom: 4rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a4d7c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 4.2rem;
  font-weight: 700;
  color: #F39237;
  line-height: 1.2;
}

.stat-label {
  font-size: 1.6rem;
  color: #3A7CA5;
  margin-top: 0.5rem;
}

.page-header {
  padding: 12rem 0 6rem;
  background-color: #EBEEF2;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 70rem;
}

.page-title {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}

.page-description {
  font-size: 2rem;
  color: #3A7CA5;
}

.page-header-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a4d7c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ======================================
   10. Data Visualization Components
   ====================================== */
.chart-container {
  position: relative;
  height: 30rem;
  margin: 2rem 0 4rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  margin: 0 1.5rem 1rem 0;
}

.legend-color {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.3rem;
  margin-right: 0.8rem;
}

.legend-label {
  font-size: 1.4rem;
  color: #555;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.stat-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat-card-value {
  font-size: 4rem;
  font-weight: 700;
  color: #1A4D7C;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.stat-card-label {
  font-size: 1.6rem;
  color: #555;
}

.progress-container {
  margin-bottom: 2.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.progress-title {
  font-weight: 500;
}

.progress-value {
  font-weight: 500;
  color: #F39237;
}

.progress {
  height: 1rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 0.5rem;
  background-color: #1A4D7C;
  transition: width 0.6s ease;
}

.progress-bar-accent {
  background-color: #F39237;
}

.progress-bar-success {
  background-color: #2E8B57;
}

.infographic {
  position: relative;
  padding: 4rem 0;
}

.infographic-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.infographic-number {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(26, 77, 124, 0.1);
  line-height: 1;
  margin-right: 2rem;
}

.infographic-content {
  flex: 1;
}

.infographic-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.data-viz-wrapper {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.data-viz-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.data-viz-subtitle {
  font-size: 1.6rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 2.5rem;
}

.donut-chart {
  position: relative;
  width: 20rem;
  height: 20rem;
  margin: 0 auto;
}

.donut-segment {
  fill: none;
  stroke-width: 3rem;
}

.donut-segment:nth-child(1) {
  stroke: #1A4D7C;
}

.donut-segment:nth-child(2) {
  stroke: #3A7CA5;
}

.donut-segment:nth-child(3) {
  stroke: #F39237;
}

.donut-segment:nth-child(4) {
  stroke: #2E8B57;
}

.donut-hole {
  fill: #fff;
}

.donut-center-text {
  font-size: 3.2rem;
  font-weight: 700;
  fill: #1A4D7C;
  dominant-baseline: middle;
  text-anchor: middle;
}

.donut-center-subtext {
  font-size: 1.4rem;
  fill: #6c757d;
  dominant-baseline: middle;
  text-anchor: middle;
}

.bar-chart {
  display: flex;
  height: 25rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 2rem;
}

.bar {
  flex: 1;
  margin: 0 0.5rem;
  background-color: #1A4D7C;
  border-radius: 0.4rem 0.4rem 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.bar-label {
  position: absolute;
  top: -2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.bar-value {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
}

/* ======================================
   11. FAQ Sections
   ====================================== */
.faq-section {
  background-color: #fff;
  padding: 6rem 0;
}

.faq-container {
  max-width: 80rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background-color: #fff;
  color: #1A4D7C;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover,
.faq-question:focus {
  background-color: #F5F7FA;
}

.faq-question.active {
  background-color: #1A4D7C;
  color: #fff;
}

.faq-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.faq-answer-inner {
  padding: 0 2.5rem 2rem;
}

.faq-question.active + .faq-answer {
  max-height: 50rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
}

.faq-category {
  margin-bottom: 4rem;
}

.faq-category-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #F39237;
}

/* ======================================
   12. Tooltips & Popovers
   ====================================== */
.tippy-box[data-theme~='custom'] {
  background-color: #1A4D7C;
  color: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tippy-box[data-theme~='custom'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #1A4D7C;
}

.tippy-box[data-theme~='custom'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #1A4D7C;
}

.tippy-box[data-theme~='custom'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color: #1A4D7C;
}

.tippy-box[data-theme~='custom'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #1A4D7C;
}

.tooltip-trigger {
  cursor: help;
  border-bottom: 1px dashed #3A7CA5;
}

.info-popover {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  cursor: pointer;
}

.info-popover i {
  color: #3A7CA5;
  font-size: 1.6rem;
}

/* ======================================
   13. Modal Windows
   ====================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.modal-backdrop.show {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 60rem;
  margin: 1.75rem auto;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.5;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 2.5rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
  border-top: 1px solid #e9ecef;
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}

.modal-footer > :not(:first-child) {
  margin-left: 1rem;
}

.modal-footer > :not(:last-child) {
  margin-right: 1rem;
}

.modal-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  background-color: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  border-radius: 50%;
  font-size: 3.2rem;
}

/* ======================================
   14. Cookie Consent
   ====================================== */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 120rem;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 60%;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.cookie-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cookie-description {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: #1A4D7C;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.cookie-settings-btn:hover {
  color: #F39237;
}

.cookie-settings-modal .modal-dialog {
  max-width: 80rem;
}

.cookie-category {
  margin-bottom: 3rem;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cookie-category-title {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.cookie-category-description {
  font-size: 1.5rem;
  color: #555;
  margin-top: 1rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2.6rem;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 3.4rem;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 1.8rem;
  width: 1.8rem;
  left: 0.4rem;
  bottom: 0.4rem;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2E8B57;
}

.cookie-toggle input:focus + .cookie-toggle-slider {
  box-shadow: 0 0 1px #2E8B57;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(2.4rem);
}

.cookie-toggle-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
  font-weight: 500;
  color: #1A4D7C;
}

.cookie-settings-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #1A4D7C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1020;
  transition: background-color 0.3s ease;
}

.cookie-settings-trigger:hover {
  background-color: #15406A;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* ======================================
   15. Animations & Transitions
   ====================================== */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
}

/* ======================================
   16. Utility Classes
   ====================================== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 2rem !important; }
.mt-4 { margin-top: 3rem !important; }
.mt-5 { margin-top: 5rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 2rem !important; }
.mb-4 { margin-bottom: 3rem !important; }
.mb-5 { margin-bottom: 5rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.5rem !important; }
.ml-2 { margin-left: 1rem !important; }
.ml-3 { margin-left: 2rem !important; }
.ml-4 { margin-left: 3rem !important; }
.ml-5 { margin-left: 5rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.5rem !important; }
.mr-2 { margin-right: 1rem !important; }
.mr-3 { margin-right: 2rem !important; }
.mr-4 { margin-right: 3rem !important; }
.mr-5 { margin-right: 5rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pt-3 { padding-top: 2rem !important; }
.pt-4 { padding-top: 3rem !important; }
.pt-5 { padding-top: 5rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 2rem !important; }
.pb-4 { padding-bottom: 3rem !important; }
.pb-5 { padding-bottom: 5rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.5rem !important; }
.pl-2 { padding-left: 1rem !important; }
.pl-3 { padding-left: 2rem !important; }
.pl-4 { padding-left: 3rem !important; }
.pl-5 { padding-left: 5rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.5rem !important; }
.pr-2 { padding-right: 1rem !important; }
.pr-3 { padding-right: 2rem !important; }
.pr-4 { padding-right: 3rem !important; }
.pr-5 { padding-right: 5rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 2rem !important; }
.p-4 { padding: 3rem !important; }
.p-5 { padding: 5rem !important; }

.m-0 { margin: 0 !important; }
.m-1 { margin: 0.5rem !important; }
.m-2 { margin: 1rem !important; }
.m-3 { margin: 2rem !important; }
.m-4 { margin: 3rem !important; }
.m-5 { margin: 5rem !important; }

.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

.rounded { border-radius: 0.4rem !important; }
.rounded-sm { border-radius: 0.2rem !important; }
.rounded-lg { border-radius: 0.8rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-0 { border-radius: 0 !important; }

.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.border-right { border-right: 1px solid #dee2e6 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.border-left { border-left: 1px solid #dee2e6 !important; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important; }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important; }
.shadow-none { box-shadow: none !important; }

.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.5rem !important; }
.gap-2 { gap: 1rem !important; }
.gap-3 { gap: 2rem !important; }
.gap-4 { gap: 3rem !important; }
.gap-5 { gap: 5rem !important; }

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }

.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-bold { font-weight: 700 !important; }

.font-italic { font-style: italic !important; }
.text-decoration-none { text-decoration: none !important; }
.text-break { word-wrap: break-word !important; word-break: break-word !important; }
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* ======================================
   17. Media Queries
   ====================================== */

@media (max-width: 575.98px) {
  html {
    font-size: 56.25%; 
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 10rem 0 5rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-lg {
    padding: 8rem 0;
  }

  .hidden-xs {
    display: none !important;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row > .col,
  .form-row > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .cookie-consent {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    max-width: none;
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    margin-right: 0;
  }

  .cookie-settings-trigger {
    bottom: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 59.375%; 
  }

  .hero-title {
    font-size: 3.6rem;
  }

  .section {
    padding: 6rem 0;
  }

  .hidden-sm {
    display: none !important;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 4rem;
  }

  .hidden-md {
    display: none !important;
  }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
  .hidden-lg {
    display: none !important;
  }
}


@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}


@media (max-width: 991.98px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -30rem;
    width: 30rem;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 2rem 2rem;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .contact-info {
    margin: 2rem 0 0;
    width: 100%;
  }

  .header-action {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-cta {
    margin: 2rem 0 0;
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
  }
}

/* ======================================
   18. Page-Specific Styles
   ====================================== */

.methodology-steps {
  counter-reset: step-counter;
}

.methodology-step {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4rem;
}

.methodology-step:last-child {
  margin-bottom: 0;
}

.methodology-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  background-color: #1A4D7C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.methodology-step::after {
  content: '';
  position: absolute;
  left: 3rem;
  top: 6rem;
  width: 2px;
  height: calc(100% - 6rem + 4rem);
  background-color: #E1E8F0;
}

.methodology-step:last-child::after {
  display: none;
}

.methodology-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.program-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.program-type {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.program-type:hover {
  transform: translateY(-5px);
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 3rem;
}

.program-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.program-goals {
  margin-top: 1.5rem;
}

.program-goal {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.program-goal i {
  color: #F39237;
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.kpi-section {
  background-color: #EBEEF2;
  padding: 6rem 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.kpi-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.kpi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  background-color: rgba(58, 124, 165, 0.1);
  color: #3A7CA5;
  border-radius: 50%;
  font-size: 3.2rem;
}

.kpi-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.chart-wrapper {
  margin-top: 2rem;
  height: 12rem;
}

.home-contact-form {
  background-color: #fff;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-contact-form .form-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
}

.analytics-preview {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.analytics-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.chart-box {
  background-color: #F5F7FA;
  border-radius: 0.6rem;
  padding: 2rem;
  height: 20rem;
  display: flex;
  flex-direction: column;
}

.chart-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.chart-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mission-section {
  position: relative;
  padding: 8rem 0;
  background-color: #F5F7FA;
}

.mission-content {
  max-width: 80rem;
  margin: 0 auto;
}

.mission-title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.mission-text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 4rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.value-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 3rem;
}

.value-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.target-audience {
  padding: 6rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.audience-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(243, 146, 55, 0.1);
  color: #F39237;
  border-radius: 50%;
  font-size: 2.4rem;
}

.audience-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.audience-list {
  margin-top: 1.5rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.audience-item i {
  color: #1A4D7C;
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.methodology-section {
  background-color: #F5F7FA;
  padding: 6rem 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.methodology-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.methodology-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 2.4rem;
}

.methodology-card-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.quality-control {
  padding: 6rem 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.quality-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quality-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  border-radius: 50%;
  font-size: 2.4rem;
}

.quality-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


.training-categories {
  padding: 6rem 0;
}

.category-tabs {
  display: flex;
  overflow-x: auto;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #1A4D7C #E1E8F0;
}

.category-tabs::-webkit-scrollbar {
  height: 6px;
}

.category-tabs::-webkit-scrollbar-track {
  background: #E1E8F0;
  border-radius: 3px;
}

.category-tabs::-webkit-scrollbar-thumb {
  background-color: #1A4D7C;
  border-radius: 3px;
}

.category-tab {
  flex: 0 0 auto;
  padding: 1.2rem 2.4rem;
  background-color: #F5F7FA;
  color: #1A4D7C;
  font-weight: 500;
  border-radius: 0.4rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover {
  background-color: #E1E8F0;
}

.category-tab.active {
  background-color: #1A4D7C;
  color: #fff;
}

.training-content {
  padding: 4rem;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.training-modules {
  margin-top: 4rem;
}

.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.module-card {
  background-color: #F5F7FA;
  border-radius: 0.8rem;
  padding: 3rem;
  transition: transform 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
}

.module-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1A4D7C;
}

.module-outcomes {
  margin-top: 2rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.outcome-item i {
  color: #F39237;
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.delivery-formats {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.format-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.format-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 2.4rem;
}

.format-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.format-features {
  margin-top: 2rem;
}

.format-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.format-feature i {
  color: #2E8B57;
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.program-duration {
  padding: 6rem 0;
}

.duration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.duration-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.duration-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(58, 124, 165, 0.1);
  color: #3A7CA5;
  border-radius: 50%;
  font-size: 2.4rem;
}

.duration-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.assessment-methods {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.assessment-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.assessment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  border-radius: 50%;
  font-size: 2.4rem;
}

.assessment-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hr-integration {
  padding: 6rem 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.integration-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.integration-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(243, 146, 55, 0.1);
  color: #F39237;
  border-radius: 50%;
  font-size: 2.4rem;
}

.integration-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.order-process {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.process-steps {
  counter-reset: process-counter;
}

.process-step {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 4rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  background-color: #1A4D7C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.process-step::after {
  content: '';
  position: absolute;
  left: 3rem;
  top: 6rem;
  width: 2px;
  height: calc(100% - 6rem + 4rem);
  background-color: #E1E8F0;
}

.process-step:last-child::after {
  display: none;
}

.process-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}


.contact-info-section {
  padding: 6rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.contact-info-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 3rem;
}

.contact-info-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-info-text {
  font-size: 1.8rem;
}

.contact-info-link {
  color: #1A4D7C;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: #F39237;
}

.map-section {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.map-container {
  height: 40rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.working-hours {
  padding: 6rem 0;
}

.hours-container {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 60rem;
  margin: 0 auto;
}

.hours-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hours-day {
  font-weight: 500;
  color: #1A4D7C;
}

.hours-time {
  text-align: right;
}

.request-info {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.request-container {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 80rem;
  margin: 0 auto;
}

.request-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
}

.request-steps {
  margin-top: 4rem;
}

.request-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.request-step:last-child {
  margin-bottom: 0;
}

.request-step-number {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: #1A4D7C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 2rem;
}

.request-step-content {
  flex: 1;
}

.request-step-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}


.analytics-header {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.analytics-overview {
  padding: 6rem 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.analytics-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.analytics-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 2.4rem;
}

.analytics-card-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.dashboard-section {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.dashboard-preview {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dashboard-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.dashboard-widget {
  background-color: #F5F7FA;
  border-radius: 0.6rem;
  padding: 2rem;
  height: 20rem;
}

.widget-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.data-collection {
  padding: 6rem 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.collection-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.collection-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(58, 124, 165, 0.1);
  color: #3A7CA5;
  border-radius: 50%;
  font-size: 2.4rem;
}

.collection-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.report-interpretation {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.interpretation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.interpretation-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.interpretation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  border-radius: 50%;
  font-size: 2.4rem;
}

.interpretation-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.export-options {
  padding: 6rem 0;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.export-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.export-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(243, 146, 55, 0.1);
  color: #F39237;
  border-radius: 50%;
  font-size: 2.4rem;
}

.export-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.interactive-examples {
  padding: 6rem 0;
  background-color: #F5F7FA;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.interactive-card {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.interactive-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  font-size: 2.4rem;
}

.interactive-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


.thank-you-section {
  padding: 10rem 0;
  text-align: center;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  margin-bottom: 3rem;
  background-color: rgba(46, 139, 87, 0.1);
  color: #2E8B57;
  border-radius: 50%;
  font-size: 5rem;
}

.thank-you-title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.thank-you-text {
  font-size: 2rem;
  max-width: 60rem;
  margin: 0 auto 4rem;
}

.next-steps {
  max-width: 60rem;
  margin: 4rem auto;
}

.next-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.next-step-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background-color: rgba(26, 77, 124, 0.1);
  color: #1A4D7C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 2rem;
}

.next-step-content {
  flex: 1;
}

.next-step-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}


.legal-section {
  padding: 8rem 0;
}

.legal-container {
  max-width: 80rem;
  margin: 0 auto;
}

.legal-title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}

.legal-subtitle {
  font-size: 2rem;
  color: #3A7CA5;
  margin-bottom: 4rem;
}

.legal-updated {
  font-size: 1.6rem;
  color: #6c757d;
  margin-bottom: 4rem;
}

.legal-content {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  font-size: 2.4rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E1E8F0;
}

.legal-content h3 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.legal-content ol {
  list-style: decimal;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
}

.legal-content a {
  color: #3A7CA5;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1A4D7C;
}

.legal-content .table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
}

.legal-content table th,
.legal-content table td {
  padding: 1rem;
  border: 1px solid #E1E8F0;
}

.legal-content table th {
  background-color: #F5F7FA;
  font-weight: 500;
}

.cookie-management {
  margin-top: 4rem;
  padding: 3rem;
  background-color: #F5F7FA;
  border-radius: 0.8rem;
}

.cookie-management-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.cookie-management-text {
  margin-bottom: 2rem;
}

.cookie-categories {
  margin-top: 3rem;
}

.cookie-category-item {
  margin-bottom: 2rem;
}

.cookie-category-header {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cookie-category-description {
  margin-bottom: 1.5rem;
}

/* ======================================
   19. Print Styles
   ====================================== */
@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .header,
  .footer,
  .nav-toggle,
  .cookie-consent,
  .cookie-settings-trigger,
  .form-container,
  .cta-container,
  .btn {
    display: none !important;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  img {
    page-break-inside: avoid;
    max-width: 100% !important;
  }

  table, pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .no-print {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }
}

/* ======================================
   20. Accessibility Enhancements
   ====================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 0;
  padding: 1rem 2rem;
  background-color: #1A4D7C;
  color: #fff;
  z-index: 1050;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

[role="button"],
button {
  cursor: pointer;
}

[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.high-contrast-mode {
  filter: invert(1) hue-rotate(180deg);
}

.high-contrast-mode img,
.high-contrast-mode video {
  filter: invert(1) hue-rotate(180deg);
}