:root {
  --primary-color: #8B4513;
  --secondary-color: #FF7F50;
  --background-color: #FDF5E6;
  --footer-bg-color: #4A2F0F;
  --button-color: #FF8C00;
  --section-bg-1: #FDF5E6;
  --section-bg-2: #FFF8DC;
  --section-bg-3: #FAEBD7;
  --section-bg-4: #F5DEB3;
  --font-family: 'Lato', sans-serif;
  --border-radius: 20px;
  --shadow-soft: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 12px 24px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--background-color) 0%, var(--section-bg-2) 100%);
  color: var(--primary-color);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
  text-shadow: var(--shadow-soft);
}

h2 {
  font-size: 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

p {
  color: #333;
  font-size: 1.1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--button-color);
}

.header {
  background: rgba(255, 248, 220, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header .logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header nav {
  margin-left: auto;
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.header nav a {
  padding: 0.5rem 1rem;
  border-radius: 15px;
  transition: var(--transition);
}

.header nav a:hover {
  background: var(--secondary-color);
  box-shadow: var(--shadow-medium);
}

.section {
  padding: 3rem 2rem;
  margin: 2rem 0;
  background: linear-gradient(45deg, var(--section-bg-1), var(--section-bg-2));
  border-radius: 30px 30px 70px 30px;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.3;
}

.section:nth-child(odd) {
  background: linear-gradient(135deg, var(--section-bg-3), var(--section-bg-4));
}

.btn-primary {
  background: linear-gradient(45deg, var(--button-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px 25px 50px 25px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 20px 40px 20px 40px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), var(--shadow-soft);
  padding: 2rem;
  margin: 1rem 0;
  transition: var(--transition);
}

.card:hover {
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.15), var(--shadow-medium);
  transform: scale(1.02);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 15px 25px 15px 25px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-family);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--secondary-color);
}

.footer {
  background: linear-gradient(135deg, var(--footer-bg-color), #2D1B0A);
  color: #F5DEB3;
  padding: 3rem 2rem;
  border-radius: 50px 20px 50px 20px;
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: inherit;
}

.footer h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-shadow: var(--shadow-soft);
}

.footer a {
  color: #F5DEB3;
}

.footer .organic-shape {
  border-radius: 40% 60% 70% 30% / 30% 30% 70% 70%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 2rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .header {
    flex-direction: column;
    text-align: center;
  }
  .header nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .card {
    padding: 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;
    }
}