:root {
  --color-primary: #1a4b3e;
  --color-secondary: #e8f5e9;
  --color-bg: #ffffff;
  --color-footer-bg: #f4f4f4;
  --color-button: #1a4b3e;
  
  --font-main: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --radius-card: 20px;
  --radius-btn: 16px;
  
  --shadow-soft: 0 10px 30px -10px rgba(26, 75, 62, 0.15);
  --shadow-hover: 0 15px 35px -5px rgba(26, 75, 62, 0.2);
  
  --spacing-section: 5rem;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: #1f2937;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
  margin-bottom: 1.5rem;
  color: #374151;
}

/* Custom Container to ensure proper width handling if Tailwind container isn't used exclusively */
.container-custom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.header-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 75, 62, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
}

/* Buttons - Soft & Organic Style */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1a4b3e 0%, #2a6b57 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 75, 62, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 75, 62, 0.4);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: var(--spacing-section) 0;
}

.section-alt {
  background-color: var(--color-secondary);
}

/* Hero Section Specifics */
.hero-section {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f0fdf4);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 245, 233, 0.6) 0%, rgba(232, 245, 233, 0) 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* Cards - Soft Shadows & Large Radius */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 75, 62, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.2s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(26, 75, 62, 0.1);
}

/* Footer */
.footer {
  background-color: var(--color-footer-bg);
  padding: 3rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-links {
  text-align: right;
}

.footer a {
  color: #6b7280;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--color-primary);
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-section { padding: 5rem 0 3rem; }
  :root { --spacing-section: 3rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-links { text-align: center; }
  .footer a { margin: 0 0.75rem; }
  .card-grid { grid-template-columns: 1fr; }
}


/* 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;
    }
}