:root {
  --color-primary: #1E2F2A;
  --color-secondary: #8FA88A;
  --color-accent-1: #EDEDED;
  --color-accent-2: #6B5E4E;
  --color-text: #2C2C2C;
  --color-border: #D4D4D4;
  --spacing-unit: 1rem;
  --radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: #FFFFFF;
  letter-spacing: 0.3px;
}

h1 {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

header {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary) !important;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--color-secondary) !important;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text) !important;
  margin: 0 0.75rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #253530 100%);
  color: var(--color-accent-1);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  font-size: 14px;
}

footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent-1);
}

footer a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-accent-1);
}

footer p {
  margin-bottom: 0.5rem;
  color: rgba(237, 237, 237, 0.9);
}

.footer-divider {
  border-top: 1px solid rgba(237, 237, 237, 0.2);
  margin: 1.5rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(237, 237, 237, 0.2);
  font-size: 13px;
  color: rgba(237, 237, 237, 0.8);
}

.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(30, 47, 42, 0.7) 0%, rgba(107, 94, 78, 0.6) 100%),
              url('images/hero-urban-herbs.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  padding: 120px 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section h1 {
  color: #FFFFFF;
  font-size: 64px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 20px;
  color: var(--color-accent-1);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

section {
  padding: 100px 2rem;
  margin: 0 auto;
}

section.alternate {
  background-color: #F9F9F9;
}

.section-title {
  margin-bottom: 2rem;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.column-text h3 {
  margin-bottom: 1.5rem;
}

.column-text p {
  margin-bottom: 1.5rem;
  font-size: 17px;
}

.column-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.column-image img:hover {
  transform: translateY(-7px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--color-secondary);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}

.properties-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.properties-table th {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.properties-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.properties-table tr:last-child td {
  border-bottom: none;
}

.properties-table tr:hover {
  background-color: #F5F5F5;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 47, 42, 0.3);
  color: #FFFFFF;
  text-decoration: none;
}

.disclaimer-block {
  background-color: var(--color-accent-1);
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}

.list-group-item {
  background-color: transparent;
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  font-size: 15px;
  line-height: 1.6;
}

.list-group-item:first-child {
  border-radius: 6px 6px 0 0;
}

.list-group-item:last-child {
  border-radius: 0 0 6px 6px;
}

.list-group-item strong {
  color: var(--color-primary);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 16px;
  cursor: pointer;
  padding: 1rem;
  background-color: var(--color-accent-1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #E0E0E0;
}

.faq-answer {
  padding: 1rem;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  display: none;
}

.faq-answer.show {
  display: block;
}

.form-control {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 47, 42, 0.1);
  outline: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background-color: var(--color-secondary);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #7F9770;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.fade-in {
  animation: fadeIn 0.8s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-section {
    padding: 80px 1.5rem;
    min-height: 350px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
  }

  section {
    padding: 60px 1.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav-link {
    margin: 0.5rem 0;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  .properties-table {
    font-size: 14px;
  }

  .properties-table th,
  .properties-table td {
    padding: 0.75rem;
  }

  .intro-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 40px 1rem;
  }

  .hero-section {
    padding: 60px 1rem;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .container-custom {
    padding: 0 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .two-column {
    gap: 1.5rem;
  }
}
