:root {
  --color-primary: #2E8B57; /* Sea Green */
  --color-secondary: #87CEFA; /* Light Sky Blue */
  --color-accent: #4CAF50; /* Button Green */
  --color-background: #F0F8F6; /* Alice Blue */
  --color-footer-bg: #2E4F4F; /* Dark Cyan */
  --color-text-dark: #333333;
  --color-text-light: #F0F8F6;
  --color-section-1: #FFFFFF;
  --color-section-2: #F8FBF8;
  --color-section-3: #E0F2F1;
  --color-section-4: #D0F0C0;
  --color-section-5: #D9EDF7;
  --color-section-6: #F0F5F5;

  --font-family-heading: 'Poppins', sans-serif;
  --font-family-body: 'Roboto', sans-serif;

  --spacing-unit: 1rem; /* 16px */
  --border-radius-base: 0.5rem; /* 8px */
  --transition-speed: 0.3s ease-in-out;
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
  --box-shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@300;400;500&display=swap');

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  color: var(--color-primary);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.6rem;
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  font-size: 1.1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover,
a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

/* Layout & Structure */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 calc(var(--spacing-unit) * 1.5);
}

section {
  padding: calc(var(--spacing-unit) * 4) 0;
  overflow: hidden; /* For any potential animations */
}

section:nth-of-type(odd) {
  background-color: var(--color-section-2);
}

section:nth-of-type(even) {
  background-color: var(--color-section-1);
}

.section-alt-bg-1 { background-color: var(--color-section-3); }
.section-alt-bg-2 { background-color: var(--color-section-4); }
.section-alt-bg-3 { background-color: var(--color-section-5); }
.section-alt-bg-4 { background-color: var(--color-section-6); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-base);
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5cb85c; /* Slightly lighter green */
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

/* Cards */
.card {
  background-color: var(--color-section-1);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-light);
  padding: calc(var(--spacing-unit) * 2);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-medium);
}

/* Forms */
form {
  background-color: var(--color-section-1);
  padding: calc(var(--spacing-unit) * 2.5);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-light);
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: var(--spacing-unit);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #DDEEEA;
  border-radius: var(--border-radius-base);
  font-family: var(--font-family-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background-color: #FAFCFB;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
  box-sizing: border-box; /* Ensures padding doesn't increase width */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(135, 206, 250, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer specific styles */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-text-light);
  padding: calc(var(--spacing-unit) * 3) 0;
  text-align: center;
  font-size: 0.95rem;
}

.footer a {
  color: var(--color-secondary);
}

.footer a:hover {
  color: var(--color-text-light);
}

/* Specific interactive components for Alpine.js */
[x-cloak] {
  display: none !important;
}

/* Transitions for Alpine.js x-show */
[x-transition:enter] {
  transition: all 0.3s ease-out;
}
[x-transition:enter-start] {
  opacity: 0;
  transform: translateY(-10px);
}
[x-transition:enter-end] {
  opacity: 1;
  transform: translateY(0);
}
[x-transition:leave] {
  transition: all 0.2s ease-in;
}
[x-transition:leave-start] {
  opacity: 1;
  transform: translateY(0);
}
[x-transition:leave-end] {
  opacity: 0;
  transform: translateY(10px);
}

/* Modern & Serene Green-Blue Minimalist Touches */
/* Subtle background texture for body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at top left, rgba(135, 206, 250, 0.05) 1%, transparent 30%),
                    radial-gradient(circle at bottom right, rgba(46, 139, 87, 0.05) 1%, transparent 30%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

/* Minimalist Divider */
.divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: 1.5rem auto 2.5rem;
  border-radius: 2px;
  opacity: 0.8;
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: var(--border-radius-base);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
  section { padding: calc(var(--spacing-unit) * 3) 0; }
  .btn { padding: 0.7rem 1.5rem; font-size: 1rem; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.6rem; }
  p { font-size: 1rem; }
  .container { padding: 0 var(--spacing-unit); }
  section { padding: calc(var(--spacing-unit) * 2) 0; }
  .form-group input, .form-group textarea, .form-group select { padding: 0.7rem 0.8rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  .btn { width: 100%; margin-bottom: 0.8rem; }
  form { padding: calc(var(--spacing-unit) * 1.5); }
}


/* 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;
    }
}