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

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #f1f5f9;
  --accent-color: #f59e0b;
  --text-color: #1e293b;
  --bg-color: #ffffff;
  --bg-secondary: #f8fafc;
  --dark-color: #0f172a;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  transition: all .2s ease-in-out;
}

a:hover {
  color: var(--accent-color);
}

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

.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 { width: 100%; }

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 700;
  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.375rem + 1.5vw);
  font-weight: 600;
  line-height: 1.15;
}

.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; }

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

.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-muted { color: #6b7280; }
.text-white { color: #ffffff; }

.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-dark { background-color: var(--dark-color); }
.bg-white { background-color: #ffffff; }

.rounded-2 { border-radius: .75rem; }

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

.d-flex { display: flex; }
.d-inline-block { display: inline-block; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

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

.position-relative { position: relative; }

.opacity-90 { opacity: 0.9; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .75rem; }
.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-13 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4.5rem; }

.me-3 { margin-right: .875rem; }
.me-4 { margin-right: 1.25rem; }
.me-6 { margin-right: 1.75rem; }

.my-5 { margin-top: 1.5rem; margin-bottom: 1.5rem; }

.p-6 { padding: 1.75rem; }
.p-7 { padding: 2rem; }
.p-8 { padding: 2.25rem; }
.p-9 { padding: 2.5rem; }
.ps-7 { padding-left: 2rem; }

.py-8 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-11 { padding-top: 3rem; padding-bottom: 3rem; }
.px-7 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: .875rem; padding-bottom: .875rem; }

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

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

.navbar-toggler {
  padding: .375rem .875rem;
  font-size: 1.25rem;
  background: transparent;
  border: 1px solid transparent;
  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%;
}

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

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

.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.375rem;
  font-size: 1.0625rem;
  border-radius: .75rem;
  transition: all .2s ease-in-out;
}

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

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

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

.btn-outline-light {
  color: white;
  border-color: white;
  background: transparent;
}

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

.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: white;
  border: 1px solid #d1d5db;
  border-radius: .75rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.3rem rgba(30, 58, 138, 0.2);
}

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

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

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-right: .75rem;
  vertical-align: top;
  background-color: white;
  border: 2px solid #d1d5db;
  appearance: none;
  border-radius: .25rem;
}

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

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

.hero-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(245, 158, 11, 0.8)), url('../phoz/agn7c1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 2rem 0;
}

.hero-image-container {
  height: 400px;
  background: url('../phoz/agn7c2.webp');
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(30, 58, 138, 0.3), rgba(245, 158, 11, 0.2));
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  text-align: center;
}

.cookie-banner p {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 1rem;
}

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

@media (min-width: 576px) {
  .container { max-width: 560px; }
}

@media (min-width: 768px) {
  .container { max-width: 740px; }
  .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%; }
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
  .text-md-start { text-align: left; }
  .text-md-end { text-align: right; }
  .mb-md-0 { margin-bottom: 0; }
  .p-md-17 { padding: 4.25rem; }
}

@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-8 { flex: 0 0 auto; width: 66.66666667%; }
  .navbar-expand-lg { flex-wrap: nowrap; }
  .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; }
  .text-lg-start { text-align: left; }
  .flex-lg-row { flex-direction: row; }
  .flex-column-reverse { flex-direction: column-reverse; }
  .py-lg-21 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .mb-lg-0 { margin-bottom: 0; }
  .p-lg-9 { padding: 2.5rem; }
}

@media (min-width: 1200px) {
  .container { max-width: 1160px; }
  .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-13 { padding: 3.5rem; }
  h1 { font-size: 4.75rem; }
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.875rem; }
  .display-3 { font-size: 4.75rem; }
  .display-5 { font-size: 3.25rem; }
  .display-6 { font-size: 2.75rem; }
}

@media (min-width: 1400px) {
  .container { max-width: 1340px; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xxl-21 { padding: 5.25rem; }
}

@media (max-width: 576px) {
  .hero-section { padding: 1.5rem 0; }
  .hero-image-container { height: 250px; }
  .py-11 { padding-top: 2rem; padding-bottom: 2rem; }
}