:root {
  /* Colors */
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #28B463; /* Emerald Green */
  --background-color: #ECF0F1; /* Light Grayish Blue */
  --footer-bg-color: #34495E; /* Dark Blue Gray */
  --button-color: #FFD700; /* Gold */

  --section-bg-1: #F8F8F8;
  --section-bg-2: #E8F6F3;
  --section-bg-3: #FCF3CF;
  --section-bg-4: #DFF6E9;
  --section-bg-5: #C2F0DD;

  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --link-color: var(--secondary-color);
  --link-hover-color: var(--primary-color);

  /* Fonts */
  --font-family-base: 'Roboto', sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-unit: 1rem;
  --section-padding-y: 6rem;
  --section-padding-x: 2rem;

  /* Borders & Radii */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1.5rem; /* For claymorphism style */
  --border-radius-lg: 2rem;

  /* Shadows */
  --shadow-clay-light: -5px -5px 10px rgba(255, 255, 255, 0.7), 5px 5px 10px rgba(0, 0, 0, 0.15);
  --shadow-clay-dark: inset 3px 3px 7px rgba(0, 0, 0, 0.1), inset -3px -3px 7px rgba(255, 255, 255, 0.7);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft, diffused */
  --shadow-button-hover: 0 8px 20px rgba(255, 215, 0, 0.3);

  /* Transitions */
  --transition-speed: 0.3s;
  --transition-easing: ease-in-out;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base for rem units */
}

body {
  font-family: var(--font-family-base);
  color: var(--text-color-dark);
  background-color: var(--background-color);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  color: var(--text-color-dark);
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 3.8rem;
  letter-spacing: -0.05em;
  font-weight: 900;
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing);
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Sections */
.section-padding {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.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); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--border-radius-md); /* Claymorphism shape */
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed) var(--transition-easing);
  box-shadow: var(--shadow-clay-light); /* Claymorphism shadow */
  background-color: var(--button-color);
  color: var(--text-color-dark);
}

.btn-primary {
  background-color: var(--button-color);
  color: var(--text-color-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.2), 5px 5px 10px rgba(0, 0, 0, 0.25);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-button-hover), var(--shadow-clay-light);
}

.btn:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-clay-dark); /* Inset shadow for active state */
}

/* Cards */
.card {
  background-color: var(--section-bg-1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: var(--font-family-heading);
  color: var(--text-color-dark);
  font-size: 1.1rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: var(--background-color);
  box-shadow: var(--shadow-clay-dark); /* Inset shadow for input fields */
  font-family: var(--font-family-base);
  font-size: 1rem;
  color: var(--text-color-dark);
  transition: all var(--transition-speed) var(--transition-easing);
  box-sizing: border-box; /* Include padding in width */
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.5), 0 0 0 3px var(--secondary-color);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Utility Classes for Tailwind complement */
.max-w-screen-xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

/* Footer Specifics */
.footer {
  background-color: var(--footer-bg-color);
  color: var(--text-color-light);
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
}

.footer a {
  color: var(--primary-color);
}

.footer a:hover {
  color: var(--text-color-light);
  text-decoration: underline;
}

/* Custom Scrollbar (optional, for aesthetics) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Keyframe Animations for subtle effects */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.8rem; }
  .section-padding { padding: 4rem var(--section-padding-x); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }
  p { font-size: 1rem; }
  .btn { padding: 0.8rem 2rem; font-size: 1rem; }
  .card { padding: 2rem; }
  .section-padding { padding: 3rem var(--section-padding-x); }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  .section-padding { padding: 2.5rem 1rem; }
  .max-w-screen-xl { padding-left: 1rem; padding-right: 1rem; }
}


/* 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;
    }
}