:root {
  --primary: #741111;
  --secondary: #1abb05;
  --background: #F9FAFB;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --accent: #fa1515;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-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;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

h1 {
  font-size: 1.6rem !important;
}

h2 {
 font-size: 1.4rem !important;
}

h3 {
  font-size:1.3rem;
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: var(--background);
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.nav a:hover {
  background-color: rgba(235, 37, 37, 0.1);
  color: var(--primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav.active {
  display: flex;
}

.hero {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content-reverse {
  grid-template-columns: 1fr 1fr;
}

.hero-content-reverse .hero-text {
  order: 2;
}

.hero-content-reverse .hero-image {
  order: 1;
}

.hero-text h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-lg);
}

.hero-text p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
}

.hero-image {
  position: relative;
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #15a004;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: var(--font-size-3xl);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(235, 37, 37, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
}

.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  font-size: var(--font-size-sm);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content h1 {
  font-size: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.thank-you-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
}

.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: var(--font-size-4xl);
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.error-page p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-popup p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

.cookie-popup-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-popup-buttons .btn {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-content-reverse .hero-text,
  .hero-content-reverse .hero-image {
    order: 0;
  }

  .hero-text h1 {
    font-size: var(--font-size-3xl);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .header-content {
    padding: 0 var(--space-sm);
  }

  .hero {
    padding: var(--space-xl) 0;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 325px) {
  .logo {
    font-size: var(--font-size-base);
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
  }
}

