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

:root {
  --primary-color: #8b5cf6;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --dark-color: #111827;
  --border-color: #e2e8f0;
}

body {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  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;
  color: var(--text-color);
}

h1 { 
  font-size: calc(2rem + 2vw); 
  font-weight: 700;
}
h2 { 
  font-size: calc(1.75rem + 1vw); 
  font-weight: 600;
}
h3 { 
  font-size: calc(1.5rem + 0.5vw); 
  font-weight: 600;
}
h4 { 
  font-size: 1.5rem; 
  font-weight: 600;
}
h5 { 
  font-size: 1.375rem; 
  font-weight: 600;
}
h6 { 
  font-size: 1.25rem; 
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

a:hover {
  color: #7c3aed;
  opacity: .9;
}

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

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

.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%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333333%; }
.col-lg-5 { width: 41.666667%; }
.col-lg-6 { width: 50%; }
.col-lg-8 { width: 66.666667%; }
.col-md-4 { width: 33.333333%; }
.col-md-6 { width: 50%; }
.col-md-8 { width: 66.666667%; }
.col-sm-6 { width: 50%; }
.col-xl-3 { width: 25%; }

.display-3 {
  font-size: calc(2.5rem + 2vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-4 {
  font-size: calc(2rem + 1.5vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-5 {
  font-size: calc(1.75rem + 1vw);
  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-white { color: white !important; }
.text-muted { color: var(--text-light); }
.text-success { color: var(--accent-color); }
.text-light { color: #f8f9fa; }

.bg-bg-2 { 
  background-color: var(--bg-secondary); 
  color: var(--text-color);
}
.bg-bg-3 { 
  background-color: var(--bg-tertiary); 
  color: var(--text-color);
}
.bg-dark { 
  background-color: var(--dark-color); 
  color: white;
}
.bg-white { 
  background-color: white; 
  color: var(--text-color);
}

.text-action-1 { color: var(--primary-color); }
.text-warning { color: var(--secondary-color); }

.btn {
  display: inline-block;
  font-weight: 500;
  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;
  text-decoration: none;
}

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

.btn-action-1:hover {
  background-color: #7c3aed;
  border-color: #7c3aed;
  color: white;
}

.btn-warning {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.btn-warning:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: white;
}

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

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

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

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

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

.btn-sm {
  padding: .5rem .75rem;
  font-size: .875rem;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
  margin-right: 2rem;
}

.navbar-brand:hover {
  color: white !important;
  opacity: 0.9;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  margin-left: 0.5rem;
}

.nav-link {
  color: white !important;
  text-decoration: none;
  padding: .75rem 1.25rem;
  border-radius: .5rem;
  transition: all .2s;
  font-weight: 500;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.nav-link:hover {
  background-color: rgba(255,255,255,0.2);
  color: white !important;
  transform: translateY(-1px);
}

.hero-section {
  background-image: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(16, 185, 129, 0.75) 100%), url('../misc/97mnb1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(16, 185, 129, 0.6) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1,
.hero-section p {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background-color: white;
  color: var(--text-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.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: 2px solid var(--border-color);
  border-radius: .75rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  color: var(--text-color);
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.15);
  background-color: white;
  color: var(--text-color);
}

.form-label {
  margin-bottom: .75rem;
  font-weight: 500;
  color: var(--text-color);
  display: block;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .125rem;
  margin-left: -2rem;
  vertical-align: top;
  background-color: white;
  border: 2px solid var(--border-color);
  appearance: none;
  border-radius: .375rem;
  transition: all .15s ease-in-out;
}

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

.form-check-input:checked::before {
  content: '✓';
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-check-label {
  cursor: pointer;
  color: var(--text-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner a {
  color: var(--secondary-color);
}

.cookie-banner p {
  color: white;
  margin-bottom: 0;
}

.py-11 { padding-top: 3rem; padding-bottom: 3rem; }
.py-lg-21 { padding-top: 5rem; padding-bottom: 5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-13 { margin-top: 3.25rem; }

.me-2 { margin-right: .5rem; }
.me-3 { margin-right: .75rem; }
.ms-auto { margin-left: auto; }

.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-9 { padding: 2.25rem; }
.pt-6 { padding-top: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }

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

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

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

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

.opacity-90 { opacity: .9; }

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

.list-unstyled li {
  margin-bottom: 0.5rem;
}

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

.gap-3 > * + * {
  margin-top: 0.75rem;
}

.gap-4 > * + * {
  margin-left: 1rem;
}

.border-secondary {
  border-color: var(--border-color) !important;
}

section {
  position: relative;
}

section.bg-bg-2 {
  background-color: var(--bg-secondary);
  color: var(--text-color);
}

section.bg-bg-3 {
  background-color: var(--bg-tertiary);
  color: var(--text-color);
}

section.bg-dark {
  background-color: var(--dark-color);
  color: white;
}

section.bg-dark h1,
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4,
section.bg-dark h5,
section.bg-dark h6,
section.bg-dark p {
  color: white;
}

.bg-action-1 {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.bg-action-1 h1,
.bg-action-1 h2,
.bg-action-1 h3,
.bg-action-1 h4,
.bg-action-1 h5,
.bg-action-1 h6,
.bg-action-1 p {
  color: white !important;
}

footer {
  border-top: 1px solid var(--border-color);
}

footer a {
  color: #d1d5db;
}

footer a:hover {
  color: white;
}

@media (max-width: 1199px) {
  .col-xl-3 { width: 33.333333%; }
  .col-xl-5 { width: 41.666667%; }
  .col-xl-6 { width: 50%; }
}

@media (max-width: 991px) {
  .col-lg-3 { width: 50%; margin-bottom: 2rem; }
  .col-lg-4 { width: 100%; margin-bottom: 2rem; }
  .col-lg-5 { width: 100%; margin-bottom: 2rem; }
  .col-lg-6 { width: 100%; margin-bottom: 2rem; }
  .col-lg-8 { width: 100%; }
  
  .mb-lg-0 { margin-bottom: 2rem; }
  .py-lg-21 { padding-top: 3rem; padding-bottom: 3rem; }
  
  .hero-section {
    min-height: 70vh;
    background-attachment: scroll;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .col-md-4 { width: 100%; margin-bottom: 1.5rem; }
  .col-md-6 { width: 100%; margin-bottom: 1.5rem; }
  .col-md-8 { width: 100%; }
  .col-sm-6 { width: 100%; margin-bottom: 1.5rem; }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
  }
  
  .display-3 { font-size: 2.5rem; }
  .display-4 { font-size: 2.25rem; }
  .display-5 { font-size: 2rem; }
  
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .nav-item {
    margin-left: 0;
    width: 100%;
  }
  
  .nav-link {
    text-align: center;
    width: 100%;
  }
  
  .gap-4 {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gap-4 > * + * {
    margin-left: 0;
  }
  
  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
  }
  
  .fs-1 { font-size: 1.4rem; }
  .fs-2 { font-size: 1.25rem; }
  .fs-3 { font-size: 1.125rem; }
  .fs-4 { font-size: 1rem; }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}