﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7fafc;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
  color: #1a202c;
}

h1 { font-size: calc(1.675rem + 4.2vw); }
h2 { font-size: calc(1.425rem + 1.1vw); }
h3 { font-size: calc(1.375rem + .8vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.375rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: #667eea;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

a:hover {
  color: #5a67d8;
  transform: translateY(-1px);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

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

:root {
  --primary-color: #667eea;
  --primary-dark: #5a67d8;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --danger-color: #f56565;
  --text-color: #2d3748;
  --text-muted: #718096;
  --bg-color: #f7fafc;
  --bg-secondary: #edf2f7;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-bg-2 { background-color: var(--bg-secondary); }
.bg-bg-3 { background-color: var(--bg-color); }
.bg-white { background-color: var(--bg-white); }
.bg-dark { background-color: #1a202c; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-action-1 { color: var(--primary-color); }
.text-white { color: #ffffff; }
.text-muted { color: var(--text-muted); }

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.hero-bg {
  background-image: linear-gradient(rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), url('../gfx/3y8gq1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.display-1 { font-size: calc(1.875rem + 5.4vw); font-weight: 700; line-height: 1.1; }
.display-2 { font-size: calc(1.75rem + 4.8vw); font-weight: 700; line-height: 1.1; }
.display-3 { font-size: calc(1.675rem + 4.2vw); font-weight: 600; line-height: 1.15; }
.display-4 { font-size: calc(1.6rem + 3.6vw); font-weight: 600; line-height: 1.15; }
.display-5 { font-size: calc(1.525rem + 2.4vw); font-weight: 600; line-height: 1.15; }
.display-6 { font-size: calc(1.45rem + 1.8vw); font-weight: 600; line-height: 1.15; }

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

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

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 { flex: 0 0 auto; width: 100%; }

.form-label {
  margin-bottom: .75rem;
  display: inline-block;
  font-weight: 500;
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: .925rem 1.375rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: .75rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-select {
  padding-right: 3.75rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 16px 12px;
}

.form-check {
  display: block;
  min-height: 1.75rem;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: -2.5rem;
  vertical-align: top;
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  appearance: none;
  border-radius: 0.375rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: .925rem 1.875rem;
  font-size: 1.0625rem;
  border-radius: .75rem;
  transition: all .3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-action-1, .btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-action-1:hover, .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .75rem 1.25rem;
  color: var(--text-color);
  font-weight: 500;
  transition: color .3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .375rem .875rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 2px solid var(--border-color);
  border-radius: .75rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.collapse:not(.show) {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 32, 44, 0.95);
  color: white;
  padding: 1rem;
  backdrop-filter: blur(10px);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.decorative-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--accent-color), transparent);
  border-radius: 50%;
  opacity: 0.1;
}

.py-3 { padding-top: .875rem; padding-bottom: .875rem; }
.py-5 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-10 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.py-11 { padding-top: 3rem; padding-bottom: 3rem; }
.py-15 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.py-21 { padding-top: 5.75rem; padding-bottom: 5.75rem; }

.p-6 { padding: 1.75rem; }
.p-7 { padding: 2rem; }
.p-8 { padding: 2.25rem; }
.p-9 { padding: 2.5rem; }
.p-12 { padding: 3.5rem; }
.p-16 { padding: 4.5rem; }

.px-4 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-7 { padding-left: 2rem; padding-right: 2rem; }

.ps-9 { padding-left: 2.5rem; }
.ps-10 { padding-left: 2.75rem; }
.ps-12 { padding-left: 3.5rem; }
.ps-13 { padding-left: 3.75rem; }

.pt-9 { padding-top: 2.5rem; }
.pb-16 { padding-bottom: 4.5rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .75rem; }
.mb-3 { margin-bottom: .875rem; }
.mb-4 { margin-bottom: 1.25rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 1.75rem; }
.mb-7 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 2.25rem; }
.mb-9 { margin-bottom: 2.5rem; }
.mb-11 { margin-bottom: 3.25rem; }
.mb-12 { margin-bottom: 3.5rem; }
.mb-13 { margin-bottom: 3.75rem; }
.mb-16 { margin-bottom: 4.5rem; }
.mb-20 { margin-bottom: 5.5rem; }

.mt-4 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.75rem; }
.mt-7 { margin-top: 2rem; }
.mt-8 { margin-top: 2.25rem; }
.mt-9 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3.5rem; }
.mt-13 { margin-top: 3.75rem; }
.mt-16 { margin-top: 4.5rem; }

.me-3 { margin-right: .875rem; }
.me-4 { margin-right: 1.25rem; }
.me-5 { margin-right: 1.5rem; }
.ms-auto { margin-left: auto; }

.fs-1 { font-size: 1.625rem; }
.fs-2 { font-size: 1.4375rem; }
.fs-3 { font-size: 1.3125rem; }
.fs-4 { font-size: 1.1875rem; }

.fw-bold { font-weight: 600; }
.fw-normal { font-weight: 400; }

.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

.text-decoration-none { text-decoration: none; }

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

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

.rounded { border-radius: .375rem; }
.rounded-2 { border-radius: .75rem; }
.rounded-pill { border-radius: 50rem; }
.rounded-circle { border-radius: 50%; }

.border { border: 1px solid var(--border-color); }
.border-start { border-left: 1px solid var(--border-color); }
.border-5 { border-width: 5px; }
.border-action-1 { border-color: var(--primary-color); }

.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

.img-fluid { max-width: 100%; height: auto; }

.list-unstyled { padding-left: 0; list-style: none; }

@media (min-width: 576px) {
  .container { max-width: 560px; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
}

@media (min-width: 768px) {
  .container { max-width: 740px; }
  .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  
  .flex-md-row { flex-direction: row; }
  .justify-content-md-end { justify-content: flex-end; }
  .justify-content-md-between { justify-content: space-between; }
  .align-items-md-center { align-items: center; }
  
  .mb-md-0 { margin-bottom: 0; }
  .mb-md-16 { margin-bottom: 4.5rem; }
  .mt-md-0 { margin-top: 0; }
  .me-md-4 { margin-right: 1.25rem; }
  
  .p-md-8 { padding: 2.25rem; }
  .p-md-12 { padding: 3.5rem; }
  
  .text-md-start { text-align: left; }
  .text-md-center { text-align: center; }
  
  .py-md-20 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .py-md-21 { padding-top: 5.75rem; padding-bottom: 5.75rem; }
}

@media (min-width: 992px) {
  .container { max-width: 980px; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-nav .nav-link { padding-right: .75rem; padding-left: .75rem; }
  .navbar-expand-lg .navbar-collapse { display: flex; flex-basis: auto; }
  .navbar-expand-lg .navbar-toggler { display: none; }
  
  .mb-lg-0 { margin-bottom: 0; }
  .mb-lg-12 { margin-bottom: 3.5rem; }
  .mb-lg-13 { margin-bottom: 3.75rem; }
  .mb-lg-20 { margin-bottom: 5.5rem; }
  .mt-lg-0 { margin-top: 0; }
  
  .py-lg-15 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-lg-20 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .py-lg-21 { padding-top: 5.75rem; padding-bottom: 5.75rem; }
  
  .text-lg-start { text-align: left; }
  .text-lg-center { text-align: center; }
  
  .flex-lg-row { flex-direction: row; }
  .justify-content-lg-between { justify-content: space-between; }
  .justify-content-lg-start { justify-content: flex-start; }
}

@media (min-width: 1200px) {
  .container { max-width: 1160px; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
  
  h1 { font-size: 4.75rem; }
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.875rem; }
  .display-1 { font-size: 5.5rem; }
  .display-2 { font-size: 5rem; }
  .display-3 { font-size: 4.75rem; }
  .display-4 { font-size: 4.25rem; }
  .display-5 { font-size: 3.25rem; }
  .display-6 { font-size: 2.75rem; }
}

@media (min-width: 1400px) {
  .container { max-width: 1340px; }
  .col-xxl-3 { flex: 0 0 auto; width: 25%; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xxl-6 { flex: 0 0 auto; width: 50%; }
  .col-xxl-7 { flex: 0 0 auto; width: 58.33333333%; }
}