:root {
  /* Colors */
  --primary-color: #2C3E50;
  --secondary-color: #E74C3C;
  --background-color: #F8F9FA;
  --footer-bg-color: #1A252F;
  --button-color: #3498DB;
  --general-text-color: #333333;
  --hero-text-color: #ECF0F1;
  --section-bg-1: #FFFFFF;
  --section-bg-2: #F1ECF5;
  --section-bg-3: #E8F6FA;
  --section-bg-4: #FDF4E3;
  --section-bg-5: #F0F8EC;
  --section-bg-6: #E6F7F0;
  --neon-glow-color: #3498DB; /* Derived from button color for glow */

  /* Fonts */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Lato', sans-serif;

  /* Spacing */
  --spacing-unit: 1rem;
  --section-padding: 6rem 0;

  /* Border Radii */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1); /* Card shadow */
  --shadow-btn: 0 4px 15px rgba(52, 152, 219, 0.4); /* Button shadow */
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--general-text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: var(--spacing-unit);
  line-height: 1.2;
  letter-spacing: -0.025em; /* Subtle brutalist touch */
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--button-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hero Section Specific Styles */
.hero-section {
  background-color: var(--hero-bg-color);
  color: var(--hero-text-color);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2); /* Brutalist edge */
}

.hero-section h1 {
  color: var(--hero-text-color);
  text-shadow: 0 0 10px rgba(52, 152, 219, 0.7), 0 0 20px rgba(52, 152, 219, 0.5); /* Neon glow */
  animation: neon-pulse 1.5s infinite alternate;
}

.hero-section p {
  color: var(--hero-text-color);
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  border-radius: var(--border-radius-full);
  background: linear-gradient(45deg, #3498DB, #2980B9);
  color: white;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2980B9, #3498DB);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

.btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05); /* Hover effect: scale-105 transform */
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.btn:active {
  transform: translateY(0) scale(1);
  box-shadow: var(--shadow-btn);
}

/* Cards */
.card {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-5px); /* Hover effect: translate-y-[-5px] */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Hover effect: shadow-2xl */
}

/* Section Backgrounds */
.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.section-bg-4 {
  background-color: var(--section-bg-4);
}

.section-bg-5 {
  background-color: var(--section-bg-5);
}

.section-bg-6 {
  background-color: var(--section-bg-6);
}

/* Utility Classes for Layout (to complement Tailwind) */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.text-center {
  text-align: center;
}

/* Footer Styles */
.footer {
  background-color: var(--footer-bg-color);
  color: #ECF0F1;
  padding: 4rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: var(--button-color);
}

.footer a:hover {
  color: var(--secondary-color);
}

/* Brutalism-inspired elements (subtle) */
.brutal-border {
  border: 2px solid var(--primary-color);
  box-shadow: 4px 4px 0px var(--primary-color);
  transition: all 0.2s ease-in-out;
}

.brutal-border:hover {
  box-shadow: 8px 8px 0px var(--secondary-color);
}

/* Animations */
@keyframes neon-pulse {
  0% {
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.7), 0 0 20px rgba(52, 152, 219, 0.5);
  }
  100% {
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.9), 0 0 25px rgba(52, 152, 219, 0.7), 0 0 35px rgba(52, 152, 219, 0.3);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  .hero-section {
    padding: 6rem 0;
  }
  .card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .hero-section p {
    font-size: 1.1rem;
  }
  .btn {
    width: 100%;
    margin-top: 1rem;
  }
  .section {
    padding: 3rem 0;
  }
}

/* AOS Animations (placeholders for classes that AOS would add) */
/* These styles would typically be handled by AOS directly,
   but for context, how they might look if custom-defined: */
.aos-animate[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aos-init[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
}

.aos-animate[data-aos="slide-right"] {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aos-init[data-aos="slide-right"] {
  opacity: 0;
  transform: translateX(-50px);
}

.aos-animate[data-aos="zoom-in"] {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.aos-init[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
}

/* Brutalist details for specific elements, if needed */
.element-with-brutal-flare {
  border: 3px solid var(--primary-color);
  box-shadow: 8px 8px 0px var(--secondary-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  background-color: var(--section-bg-1);
}
.element-with-brutal-flare:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px var(--button-color);
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}