/* Variables & Root Styles */
:root {
  /* Main Colors - Neo-Brutalist Complementary Palette */
  --primary-color: #FF3D00; /* Vibrant Orange/Red */
  --primary-dark: #E53600;
  --secondary-color: #1A76FF; /* Complementary Blue */
  --secondary-dark: #0056DB;
  --accent-color: #FFD600; /* Accent Yellow */
  --accent-dark: #CCAA00;
  --text-dark: #222222;
  --text-light: #FFFFFF;
  --text-gray: #666666;
  --background-light: #F9F9F9;
  --background-dark: #121212;
  --card-background: #FFFFFF;
  --border-color: #E0E0E0;
  --success-color: #00C853;
  --error-color: #FF1744;
  --warning-color: #FFC400;
  
  /* Neo-Brutalist Shadows and Effects */
  --neo-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9);
  --neo-inset-shadow: inset 3px 3px 0px rgba(0, 0, 0, 0.2);
  --glass-effect: rgba(255, 255, 255, 0.1);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --container-width: 1200px;
  --section-spacing: 100px;
  --card-border-radius: 0px; /* Neo-Brutalism: Sharp corners */
  --button-border-radius: 0px; /* Neo-Brutalism: Sharp corners */
  --element-border-radius: 0px; /* Neo-Brutalism: Sharp corners */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Styles */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2.5rem;
  color: var(--text-dark);
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Button Styles - Global */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--heading-font);
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  border: 3px solid var(--primary-color);
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--neo-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
  color: var(--text-light);
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9);
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.9);
}

.btn-secondary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
}

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

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

button, input[type='submit'] {
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all var(--transition-medium);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: background-color var(--transition-medium);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color var(--transition-fast);
}

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

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

.nav-menu a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
  background-color: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--card-background);
  border: 3px solid var(--text-dark);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--neo-shadow);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-gray);
}

/* Solutions Section */
.solutions {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
}

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

.solutions-content h2 {
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.solutions-content p {
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  width: 22%;
  text-align: center;
  z-index: 2;
}

.timeline-content {
  background-color: var(--primary-color);
  padding: 20px;
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
  margin-top: 30px;
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--text-light);
  word-break: break-all;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Sustainability Section */
.sustainability {
  background-color: var(--background-light);
}

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sustainability-text {
  flex: 1;
}

.sustainability-image {
  flex: 1;
  text-align: center;
}

.sustainability-image img {
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
  max-width: 100%;
  object-fit: cover;
}

.sustainability-text ul {
  list-style-type: none;
  padding: 0;
}

.sustainability-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.sustainability-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Partners Section */
.partners {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.partners .section-title {
  color: var(--text-light);
}

.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.partner-item {
  text-align: center;
  transition: transform var(--transition-medium);
}

.partner-item:hover {
  transform: translateY(-10px);
}

.partner-item img {
  max-width: 180px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 15px;
  background-color: white;
  padding: 10px;
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
}

.partner-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Case Studies Section */
.case-studies {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.case-studies .section-title {
  color: var(--text-light);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case-studies .card {
  background-color: var(--card-background);
  color: var(--text-dark);
}

.case-studies .card-content h3 {
  color: var(--primary-color);
}

/* FAQ Section */
.faq {
  background-color: var(--background-light);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
  background-color: var(--card-background);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--card-background);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Events Calendar */
.events-calendar {
  background-color: var(--background-light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.event-card {
  display: flex;
  background-color: var(--card-background);
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 20px;
  min-width: 100px;
  font-family: var(--heading-font);
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 1.2rem;
}

.event-details {
  padding: 20px;
  flex-grow: 1;
}

.event-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.event-location {
  margin-bottom: 15px;
  color: var(--text-gray);
}

/* Pricing Section */
.pricing {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
}

.pricing .section-title {
  color: var(--text-light);
}

.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--card-background);
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
  overflow: hidden;
  color: var(--text-dark);
  transform-style: preserve-3d;
  transition: transform var(--transition-medium);
}

.pricing-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.pricing-card.featured {
  transform: scale(1.05);
  border-color: var(--accent-color);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px) rotateX(5deg);
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  background-color: var(--text-dark);
  color: var(--text-light);
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--heading-font);
}

.pricing-features {
  padding: 30px 20px;
}

.pricing-features ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
}

.pricing-footer {
  padding: 20px;
  text-align: center;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--background-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.portfolio-overlay p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background-color: var(--background-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info h3,
.contact-form-container h3 {
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--primary-color);
}

.contact-map {
  height: 300px;
  border: 3px solid var(--text-dark);
  box-shadow: var(--neo-shadow);
  overflow: hidden;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 3px solid var(--text-dark);
  background-color: var(--card-background);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 75px;
}

.footer-col h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact-info p {
  margin-bottom: 10px;
}

.social-links {
  margin-top: 20px;
}

.social-links h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-legal {
  display: flex;
}

.footer-legal a {
  margin-left: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
  opacity: 1;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-light);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  margin-right: 20px;
}

.btn-cookie {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn-cookie:hover {
  background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 50px 20px;
}

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

.success-message {
  max-width: 600px;
}

.success-message h1 {
  margin-bottom: 20px;
}

.success-actions {
  margin-top: 40px;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 150px;
  padding-bottom: 50px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2,
.terms-content h2 {
  margin-top: 40px;
}

/* Particle Animation Styles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .timeline {
    flex-direction: column;
  }
  
  .timeline:before {
    display: none;
  }
  
  .timeline-item {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .timeline-item:before {
    display: none;
  }
  
  .sustainability-content {
    flex-direction: column;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px) rotateX(5deg);
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-menu {
    flex-direction: column;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    padding: 10px;
    flex-direction: row;
    justify-content: center;
  }
  
  .event-date .day {
    margin-right: 5px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: 15px;
    justify-content: center;
  }
  
  .footer-legal a:first-child {
    margin-left: 0;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}