:root {
  --color-accent: #292474;
  --color-background: #F3F4F6;
  --color-highlight: #ced12d;
  --color-card: #E5E7EB;
  --color-text: #1c387e;
  --color-text-light: #4B5563;
  --color-white: #FFFFFF;
  
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: 0.875rem;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: var(--space-xs);
}

section > div ul:not(.nav-menu ul):not(.footer-section ul) {
  list-style: disc;
  margin-left: var(--space-lg);
  padding-left: var(--space-md);
}

section ul[style*="margin-left"] {
  list-style: disc;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-highlight);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding: var(--space-sm) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text);
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.menu-toggle span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--color-text);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 1000;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}


.nav-menu li {
  margin-bottom: var(--space-md);
}

.nav-menu a {
  display: block;
  padding: var(--space-sm);
  font-size: 0.9375rem;
  border-bottom: 0.0625rem solid var(--color-card);
}

.hero {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.card p {
  font-size: 0.8125rem;
  margin-bottom: var(--space-sm);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-highlight);
  color: var(--color-text);
}

.btn-secondary {
  background-color: var(--color-highlight);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 0.0625rem solid var(--color-card);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.1875rem rgba(41, 36, 116, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.8125rem;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-2xl);
  box-shadow: 0 -0.0625rem 0.3125rem rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.nav-menu ul,
.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-xs);
}

.footer-section a {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 0.0625rem solid var(--color-card);
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.contact-info {
  margin: var(--space-lg) 0;
}

.contact-info p {
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.contact-info a {
  color: var(--color-accent);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.error-page p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-page h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.thank-you-page p {
  font-size: 1rem;
  margin-bottom: var(--space-xl);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 -0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  z-index: 999;
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-popup p {
  margin: 0;
  font-size: 0.8125rem;
  flex: 1;
  min-width: 250px;
}

.cookie-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .cookie-popup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-popup-buttons {
    width: 100%;
    justify-content: center;
  }
  
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }
}
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .error-page h1 {
    font-size: 3rem;
  }
}

.image-hero-section {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: var(--space-2xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(41, 36, 116, 0.85) 0%, rgba(30, 30, 100, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-hero-content {
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  padding: var(--space-xl);
  z-index: 1;
  position: relative;
}

.image-hero-content h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.image-hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.split-image-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to bottom, var(--color-background) 0%, var(--color-white) 100%);
}

.split-image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split-image-content {
  padding: var(--space-lg);
}

.split-image-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.split-image-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.split-image-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.split-image-visual:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.split-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-image-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-background);
}

.featured-image-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-image-wrapper {
  position: relative;
  overflow: hidden;
}

.featured-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(41, 36, 116, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.featured-image-card:hover .featured-image-wrapper img {
  transform: scale(1.1);
}

.featured-image-text {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-image-text h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-accent);
}

.featured-image-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .image-hero-section {
    background-attachment: scroll;
    min-height: 400px;
  }

  .image-hero-content h2 {
    font-size: 2rem;
  }

  .image-hero-content p {
    font-size: 1rem;
  }

  .split-image-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split-image-visual {
    order: -1;
    transform: none;
  }

  .split-image-visual:hover {
    transform: scale(1.02);
  }

  .featured-image-card {
    grid-template-columns: 1fr;
  }

  .featured-image-wrapper {
    min-height: 300px;
  }

  .featured-image-text {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .logo {
    font-size: 0.9375rem;
  }
  
  .logo img {
    width: 2rem;
    height: 2rem;
  }

  .image-hero-content h2 {
    font-size: 1.75rem;
  }

  .split-image-content h2,
  .featured-image-text h2 {
    font-size: 1.5rem;
  }
}
