/* ===================================
   RADIASCOMP 360 - NATURE ORGANIC STYLE
   CSS Reset & Base Styles
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E2F;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

/* ===================================
   NATURE ORGANIC COLOR PALETTE
   =================================== */

:root {
  --primary-green: #4A6741;
  --secondary-green: #6B8E5F;
  --earth-brown: #8B7355;
  --cream: #F9F7F4;
  --sand: #E8DCC8;
  --moss: #7A9471;
  --bark: #5A4A3A;
  --leaf: #A8C69F;
  --text-dark: #2C3E2F;
  --text-medium: #5A6B5A;
  --text-light: #8A998A;
  --white: #FFFFFF;
  --accent-terracotta: #C77A00;
}

/* ===================================
   TYPOGRAPHY - NATURE ORGANIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

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

a:hover {
  color: var(--primary-green);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER - NATURE ORGANIC
   =================================== */

header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   BUTTONS - ORGANIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: var(--accent-terracotta);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(199, 122, 0, 0.3);
}

.btn-primary:hover {
  background-color: #A86500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 122, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary-green);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - ORGANIC NATURE
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--moss) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subheadline {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--sand);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 103, 65, 0.15);
  border-color: var(--leaf);
}

/* ===================================
   FEATURES GRID - ORGANIC STYLE
   =================================== */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--leaf);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 103, 65, 0.15);
  border-left-color: var(--accent-terracotta);
}

.feature-card h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-medium);
}

/* ===================================
   SERVICES GRID - NATURE ORGANIC
   =================================== */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.featured {
  border: 3px solid var(--accent-terracotta);
  position: relative;
  transform: scale(1.05);
}

.service-card.featured::before {
  content: 'Doporučujeme';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-terracotta);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 103, 65, 0.15);
}

.service-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-medium);
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
}

/* ===================================
   PROBLEM-SOLUTION SECTION
   =================================== */

.problem-solution {
  background-color: var(--sand);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-green);
}

.problems {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.problem-item {
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 20px);
  min-width: 240px;
  text-align: center;
  color: var(--text-medium);
  box-shadow: 0 2px 10px rgba(74, 103, 65, 0.08);
}

.solution {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-green);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   STEPS / PROCESS - ORGANIC FLOW
   =================================== */

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--leaf);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(74, 103, 65, 0.15);
  border-top-color: var(--accent-terracotta);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.step p {
  color: var(--text-medium);
}

/* ===================================
   TESTIMONIALS - READABLE TEXT
   =================================== */

.testimonials {
  background-color: var(--cream);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-green);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  border-left: 4px solid var(--leaf);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--primary-green);
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

.rating {
  color: var(--accent-terracotta);
  font-size: 18px;
}

/* ===================================
   PRICING TABLE - ORGANIC CARDS
   =================================== */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  border: 2px solid var(--sand);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 3px solid var(--accent-terracotta);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(74, 103, 65, 0.15);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-terracotta);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
  min-height: 60px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 16px;
}

.pricing-card .description {
  color: var(--text-medium);
  margin-bottom: 24px;
}

.pricing-card .included {
  margin-bottom: 24px;
}

.pricing-card .included li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-medium);
  border-bottom: 1px solid var(--sand);
}

.pricing-card .included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .ideal-for {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin-top: auto;
  padding-top: 16px;
}

/* ===================================
   CONTACT FORM - ORGANIC STYLE
   =================================== */

.form-container {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(74, 103, 65, 0.08);
  border: 2px solid var(--sand);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background-color: var(--cream);
  color: var(--text-dark);
}

.input-field:focus {
  outline: none;
  border-color: var(--leaf);
  background-color: var(--white);
}

select.input-field {
  cursor: pointer;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.privacy-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
}

/* ===================================
   CTA SECTIONS - ORGANIC GRADIENT
   =================================== */

.cta-section {
  background: linear-gradient(135deg, var(--moss) 0%, var(--leaf) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 16px;
  text-align: center;
}

.cta-final {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.cta-section h2,
.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p,
.cta-final p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.value-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.value-points .point {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

/* ===================================
   FOOTER - ORGANIC EARTH TONES
   =================================== */

footer {
  background: linear-gradient(135deg, var(--bark) 0%, var(--earth-brown) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-column h3 {
  color: var(--leaf);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column ul li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--leaf);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-legal a:hover {
  color: var(--leaf);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bark);
  color: var(--white);
  padding: 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

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

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background-color: var(--accent-terracotta);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #A86500;
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-btn-reject:hover {
  background-color: var(--white);
  color: var(--bark);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}

.cookie-btn-settings:hover {
  background-color: var(--leaf);
  color: var(--bark);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-medium);
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--primary-green);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--cream);
  border-radius: 8px;
}

.cookie-category h3 {
  color: var(--primary-green);
  margin-bottom: 8px;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  color: var(--text-medium);
  font-weight: 600;
  cursor: pointer;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

.legal-content {
  padding: 40px 20px;
}

.legal-section {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(74, 103, 65, 0.08);
  border-left: 4px solid var(--leaf);
}

.legal-section h2 {
  color: var(--primary-green);
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul li {
  color: var(--text-medium);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-section ul {
  list-style: disc;
  margin-left: 24px;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 32px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Card layouts on mobile */
  .feature-card,
  .service-card,
  .pricing-card {
    flex: 1 1 100%;
  }
  
  .service-card.featured {
    transform: scale(1);
  }
  
  /* Steps on mobile */
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Footer on mobile */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie consent on mobile */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--leaf);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}