
:root {
  --primary: #1A1F2E;
  --secondary: #8C3D35;
  --accent: #E5B012;
  --bg-dark: #0D1117;
  --bg-light: #1E2533;
  --text-light: #E8E9F3;
  --text-muted: #8D9CB8;
  --success: #2D7D5D;
  --warning: #E5B012;
  --error: #B33A3A;
  --border: #2A3245;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --border-radius-lg: 16px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-light);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

button:hover, .btn:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

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

.text-muted {
  color: var(--text-muted);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}


.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-link {
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

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

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}


.hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 17, 23, 0.8) 50%, var(--bg-dark) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-cta {
  margin-top: 2.5rem;
}

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


.accordion {
  margin-bottom: 2rem;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.accordion-item {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.accordion-header {
  padding: 0;
  margin: 0;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background-color: var(--bg-light);
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: var(--primary);
  transform: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: var(--accent);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8E9F3'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E5B012'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  background-color: var(--bg-light);
}

.accordion-body p:last-child {
  margin-bottom: 0;
}


.features {
  position: relative;
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-text {
  color: var(--text-muted);
  flex-grow: 1;
}

.feature-link {
  margin-top: 1.5rem;
  align-self: flex-start;
  font-weight: 600;
}


.cta-section {
  padding: 6rem 0;
  background-color: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(140, 61, 53, 0.2) 0%, rgba(229, 176, 18, 0.1) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}


.form-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--primary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  color: var(--text-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 176, 18, 0.2);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

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

.form-check-input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}


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


.how-it-works {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.step-number {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.step-text {
  color: var(--text-muted);
}


.footer {
  background-color: var(--primary);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-text {
  flex: 1;
}

.contact-text a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-map {
  flex: 1;
  min-width: 300px;
}

.map-container {
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background-color: var(--primary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 1000;
  border: 1px solid var(--border);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

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

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.cookie-button {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.cookie-settings {
  background-color: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.cookie-settings:hover {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 17, 23, 0.9);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--text-light);
  transform: none;
  box-shadow: none;
}

.cookie-modal-body {
  padding: 1.5rem;
}

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

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

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

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

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  transition: var(--transition);
  border-radius: 30px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-muted);
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-category-toggle input:checked + .cookie-category-slider {
  background-color: var(--accent);
}

.cookie-category-toggle input:checked + .cookie-category-slider:before {
  transform: translateX(30px);
  background-color: var(--text-light);
}

.cookie-category-toggle input:disabled + .cookie-category-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.about-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/about-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 17, 23, 0.8) 50%, var(--bg-dark) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.about-section {
  margin-bottom: 4rem;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}


.concept-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.concept-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/concept-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.concept-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 17, 23, 0.8) 50%, var(--bg-dark) 100%);
  z-index: 1;
}

.concept-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.concept-content {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.concept-section {
  margin-bottom: 4rem;
}

.concept-section:last-child {
  margin-bottom: 0;
}

.concept-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.concept-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.concept-list {
  margin-bottom: 2rem;
}

.concept-list-item {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.concept-list-item:last-child {
  margin-bottom: 0;
}


.contacts-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.contacts-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(140, 61, 53, 0.2) 0%, rgba(229, 176, 18, 0.1) 100%);
  z-index: 0;
}

.contacts-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contacts-content {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.contacts-info {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contacts-details {
  flex: 1;
  min-width: 300px;
}

.contacts-map {
  flex: 1;
  min-width: 300px;
}

.contacts-map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.contact-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-card:last-child {
  margin-bottom: 0;
}

.contact-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

.contact-card-item:last-child {
  margin-bottom: 0;
}

.contact-card-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-card-text {
  flex: 1;
  color: var(--text-muted);
}

.contact-card-text a {
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-card-text a:hover {
  color: var(--accent);
}


.thanks-section {
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  text-align: center;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.legal-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--bg-dark);
  text-align: center;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.legal-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.legal-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-list {
  margin-bottom: 1.5rem;
}

.legal-list-item {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.legal-list-item:last-child {
  margin-bottom: 0;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 3rem;
  font-style: italic;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(13, 17, 23, 0.9);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-light);
  transform: none;
  box-shadow: none;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 8rem 0 5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .form-container {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin-left: 0;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.3rem;
    display: block;
    width: 100%;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
  }
  
  .nav-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
  
  .mobile-toggle.active {
    position: fixed;
    right: 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .step-container {
    flex-direction: column;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .legal-container {
    padding: 2rem;
  }
  
  .cookie-consent {
    bottom: 0;
    right: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .legal-container {
    padding: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .modal-content {
    max-width: 100%;
  }
}