/* ============================================
   FELTRI MOTORS - NATURE ORGANIC DESIGN
   CSS Stylesheet - Mobile First Approach
   ============================================ */

/* ============================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E2E;
  background-color: #F9FAF7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A3A1A;
  margin-bottom: 16px;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

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

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #3A4A3A;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1A3A1A;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION - ORGANIC STYLE
   ============================================ */

header {
  background: linear-gradient(135deg, #F9FAF7 0%, #E8EDE5 100%);
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(42, 92, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid #7A9B6B;
}

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

header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 24px;
  padding: 8px 16px;
  color: #2C3E2E;
  font-weight: 500;
  font-size: 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #7A9B6B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - ORGANIC SLIDING PANEL
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7A9B6B 0%, #5A7B4B 100%);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.25);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 16px rgba(42, 92, 42, 0.35);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #F9FAF7 0%, #E8EDE5 100%);
  box-shadow: -4px 0 24px rgba(42, 92, 42, 0.15);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #7A9B6B;
  border-radius: 50%;
  color: #2C3E2E;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #7A9B6B;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  padding: 16px 20px;
  color: #2C3E2E;
  font-size: 17px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background-color: rgba(122, 155, 107, 0.15);
  border-left-color: #7A9B6B;
  padding-left: 28px;
}

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

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background: linear-gradient(135deg, #7A9B6B 0%, #5A7B4B 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(122, 155, 107, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5A7B4B 0%, #4A6B3B 100%);
  box-shadow: 0 6px 16px rgba(122, 155, 107, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #5A7B4B;
  border: 2px solid #7A9B6B;
}

.btn-secondary:hover {
  background-color: #7A9B6B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #5A7B4B;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: underline;
}

.btn-link:hover {
  color: #7A9B6B;
  transform: translateX(4px);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

/* ============================================
   HERO SECTION - NATURE INSPIRED
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8EDE5 0%, #D4E0CD 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 155, 107, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(90, 123, 75, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 36px;
  color: #1A3A1A;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(26, 58, 26, 0.1);
}

.hero p {
  font-size: 18px;
  color: #3A4A3A;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #2C3E2E;
  box-shadow: 0 2px 8px rgba(42, 92, 42, 0.1);
}

/* ============================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   ============================================ */

.services-wrapper,
.values-grid,
.features-grid,
.contact-grid,
.regions-grid,
.benefits-grid,
.standards-grid,
.dept-grid,
.links-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.service-card,
.value-item,
.region-card,
.location-card,
.contact-method,
.service-detail {
  flex: 1 1 100%;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(42, 92, 42, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.value-item:hover,
.region-card:hover,
.location-card:hover {
  box-shadow: 0 8px 24px rgba(122, 155, 107, 0.2);
  transform: translateY(-4px);
  border-color: #7A9B6B;
}

.service-card h3,
.value-item h3,
.region-card h3 {
  color: #1A3A1A;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card .price {
  font-size: 22px;
  font-weight: 700;
  color: #5A7B4B;
  margin-bottom: 12px;
}

.service-detail {
  padding: 32px;
  margin-bottom: 32px;
}

.service-detail h3 {
  font-size: 24px;
  color: #1A3A1A;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 26px;
  font-weight: 700;
  color: #7A9B6B;
  margin-bottom: 16px;
  display: block;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail ul li {
  margin-bottom: 10px;
  color: #3A4A3A;
  padding-left: 8px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #F9FAF7 0%, #E8EDE5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(42, 92, 42, 0.1);
  border-left: 4px solid #7A9B6B;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 17px;
  color: #2C3E2E;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card strong {
  color: #1A3A1A;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-card span {
  color: #F5A623;
  font-size: 18px;
}

.trust-stats {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  color: #5A7B4B;
}

/* ============================================
   TEXT-IMAGE SECTIONS - FLEXBOX ALIGNMENT
   ============================================ */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.08);
}

.text-image-section > * {
  flex: 1 1 100%;
}

.story,
.mission,
.team {
  margin-bottom: 60px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.milestones div {
  flex: 1 1 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #E8EDE5 0%, #D4E0CD 100%);
  border-radius: 12px;
  border-left: 4px solid #7A9B6B;
  font-weight: 500;
  color: #2C3E2E;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step {
  flex: 1 1 100%;
  padding: 28px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.08);
  border-top: 4px solid #7A9B6B;
  position: relative;
}

.step h3 {
  color: #1A3A1A;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #3A4A3A;
}

/* ============================================
   FAQ SECTION - ORGANIC ACCORDION STYLE
   ============================================ */

.faq {
  margin: 60px 0;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(42, 92, 42, 0.08);
  border-left: 4px solid #7A9B6B;
}

.faq-item h3 {
  color: #1A3A1A;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #3A4A3A;
  line-height: 1.8;
}

/* ============================================
   CTA SECTIONS - PROMINENT CALLS TO ACTION
   ============================================ */

.final-cta,
.cta-section {
  background: linear-gradient(135deg, #7A9B6B 0%, #5A7B4B 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  color: #FFFFFF;
}

.final-cta h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 20px;
}

.final-cta p,
.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 24px;
}

.final-cta .btn-primary,
.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #5A7B4B;
}

.final-cta .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #F9FAF7;
  transform: translateY(-3px);
}

.final-cta .btn-secondary,
.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.final-cta .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.reassurance {
  font-size: 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   THANK YOU PAGE - SPECIAL STYLING
   ============================================ */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E8EDE5 0%, #D4E0CD 100%);
  border-radius: 20px;
  margin-bottom: 60px;
}

.checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7A9B6B 0%, #5A7B4B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(122, 155, 107, 0.3);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   FOOTER - ORGANIC NATURAL STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E2E 0%, #1A3A1A 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 48px 20px 24px;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-info {
  margin-bottom: 24px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-info strong {
  color: #FFFFFF;
  font-size: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  background-color: rgba(122, 155, 107, 0.3);
}

footer > .container > p:last-child {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   COOKIE CONSENT BANNER - ORGANIC STYLE
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E2E 0%, #1A3A1A 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(42, 92, 42, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

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

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  text-align: center;
  margin-bottom: 12px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #7A9B6B 0%, #5A7B4B 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #5A7B4B 0%, #4A6B3B 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 155, 107, 0.3);
}

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

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

.cookie-settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  text-decoration: underline;
  padding: 8px 16px;
}

.cookie-settings:hover {
  color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 92, 42, 0.85);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #F9FAF7;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(42, 92, 42, 0.4);
  position: relative;
}

.cookie-modal-content h3 {
  color: #1A3A1A;
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #7A9B6B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category h4 {
  color: #2C3E2E;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #3A4A3A;
  font-size: 14px;
  flex: 1 1 100%;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #CCC;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #7A9B6B;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

.legal-content {
  background-color: #FFFFFF;
  padding: 48px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(42, 92, 42, 0.08);
  margin: 40px 0;
}

.legal-content h2 {
  color: #1A3A1A;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 2px solid #E8EDE5;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: #3A4A3A;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  color: #3A4A3A;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content a {
  color: #5A7B4B;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #7A9B6B;
}

.rights-summary {
  background: linear-gradient(135deg, #E8EDE5 0%, #D4E0CD 100%);
  padding: 40px 32px;
  border-radius: 16px;
  margin: 40px 0;
}

.rights-summary h2 {
  color: #1A3A1A;
  margin-bottom: 24px;
}

.rights-summary ul {
  list-style: none;
  padding: 0;
}

.rights-summary li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border-left: 4px solid #7A9B6B;
  box-shadow: 0 2px 8px rgba(42, 92, 42, 0.06);
}

.rights-summary strong {
  color: #1A3A1A;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   FORM STYLING - ORGANIC NATURAL
   ============================================ */

.form-note {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.08);
  border-left: 4px solid #7A9B6B;
  margin: 32px 0;
}

.form-note p {
  color: #3A4A3A;
  margin-bottom: 12px;
  line-height: 1.8;
}

.form-note strong {
  color: #1A3A1A;
  font-size: 18px;
}

.form-note a {
  color: #5A7B4B;
  text-decoration: underline;
}

.form-note a:hover {
  color: #7A9B6B;
}

/* ============================================
   CONTACT OPTIONS & ALTERNATIVES
   ============================================ */

.contact-options,
.alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.contact-options > div,
.alternatives > div {
  flex: 1 1 100%;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-options > div:hover,
.alternatives > div:hover {
  box-shadow: 0 8px 20px rgba(122, 155, 107, 0.2);
  transform: translateY(-4px);
}

.contact-options h3,
.alternatives h3 {
  color: #1A3A1A;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-options p,
.alternatives p {
  color: #3A4A3A;
  margin-bottom: 12px;
}

.contact-options strong,
.alternatives strong {
  color: #5A7B4B;
  font-size: 20px;
  display: block;
  margin: 12px 0;
}

/* ============================================
   HEADQUARTERS & LOCATION INFO
   ============================================ */

.headquarters {
  margin: 60px 0;
}

.hq-info {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(42, 92, 42, 0.1);
  border-left: 6px solid #7A9B6B;
}

.hq-info p {
  color: #3A4A3A;
  margin-bottom: 12px;
  line-height: 1.8;
}

.hq-info strong {
  color: #1A3A1A;
  display: block;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* ============================================
   COOKIE PREFERENCES PAGE
   ============================================ */

.cookie-preferences {
  margin: 60px 0;
}

.preferences-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.preferences-list > div {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(42, 92, 42, 0.08);
  border-left: 4px solid #7A9B6B;
}

.preferences-list strong {
  color: #1A3A1A;
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.preferences-list p {
  color: #3A4A3A;
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 20px;
  }

  .service-card,
  .value-item,
  .region-card {
    flex: 1 1 calc(50% - 24px);
  }

  .contact-options > div,
  .alternatives > div {
    flex: 1 1 calc(50% - 24px);
  }

  .milestones div {
    flex: 1 1 calc(50% - 16px);
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .text-image-section > * {
    flex: 1 1 calc(50% - 32px);
  }

  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner p {
    text-align: left;
    margin-bottom: 0;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .service-card,
  .value-item {
    flex: 1 1 calc(33.333% - 24px);
  }

  .region-card {
    flex: 1 1 calc(25% - 24px);
  }

  .contact-options > div,
  .alternatives > div {
    flex: 1 1 calc(33.333% - 24px);
  }

  .milestones div {
    flex: 1 1 calc(25% - 16px);
  }

  .step {
    flex: 1 1 calc(25% - 24px);
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px;
  }
}

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

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

.service-card,
.value-item,
.testimonial-card,
.region-card {
  animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

a:focus,
button:focus {
  outline: 3px solid #7A9B6B;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
  }

  .container {
    max-width: 100%;
  }
}