/* ===================================
   AMICI PELOSI ROMA - MINIMALIST STYLE
   Modern, Clean Design with Generous Spacing
   =================================== */

/* CSS RESET & BASE */
* {
  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: #2c2c2c;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Minimalist Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 { font-size: 48px; letter-spacing: -0.5px; }
h2 { font-size: 36px; letter-spacing: -0.3px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 20px;
  color: #4a4a4a;
  font-size: 16px;
}

a {
  color: #2D5F3F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1a3a26;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 10px;
  color: #4a4a4a;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* BUTTONS - Minimalist Design */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
}

.btn-primary:hover {
  background-color: #1a3a26;
  border-color: #1a3a26;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F3F;
  border-color: #2D5F3F;
}

.btn-secondary:hover {
  background-color: #2D5F3F;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-link {
  color: #2D5F3F;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #1a3a26;
  gap: 10px;
}

.btn-link::after {
  content: '→';
  font-size: 18px;
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

/* HEADER - Clean & Minimal */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #2c2c2c;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2D5F3F;
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU - Minimalist Slide-in */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #2D5F3F;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a3a26;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  color: #2c2c2c;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

/* HERO SECTION - Spacious & Clean */
.hero {
  padding: 80px 0;
  background-color: #F4E8D8;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #2D5F3F;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* PAGE HERO - Minimal */
.page-hero {
  padding: 60px 0 40px;
  background-color: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}

.page-hero .hero-content {
  text-align: center;
  max-width: 700px;
}

.category-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  text-align: center;
}

.breadcrumb a {
  color: #888;
}

.breadcrumb a:hover {
  color: #2D5F3F;
}

/* SECTIONS - Generous Spacing */
.section, section {
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 48px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* CATEGORY NAVIGATION */
.category-navigation {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.category-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #fafafa;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  background-color: #ffffff;
}

.category-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

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

.category-card p {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}

/* SERVICES PREVIEW */
.services-preview {
  background-color: #fafafa;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

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

.service-card p {
  color: #666;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.services-cta {
  text-align: center;
  margin-top: 32px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.value-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
}

.value-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-item p {
  color: #666;
  font-size: 15px;
}

/* TESTIMONIALS - Dark Text on Light */
.testimonials {
  background-color: #F4E8D8;
  padding: 80px 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 400px;
  background-color: #ffffff;
  padding: 40px;
  border-left: 4px solid #2D5F3F;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c2c2c;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.indicator {
  text-align: center;
}

.indicator strong {
  display: block;
  font-size: 48px;
  color: #2D5F3F;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.indicator span {
  display: block;
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA FINAL */
.cta-final {
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-final h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p {
  color: #e8e8e8;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-final .btn-primary {
  background-color: #E8945F;
  border-color: #E8945F;
}

.cta-final .btn-primary:hover {
  background-color: #d67d47;
  border-color: #d67d47;
}

.cta-final .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-final .btn-secondary:hover {
  background-color: #ffffff;
  color: #2D5F3F;
}

.contact-quick-info {
  margin-top: 32px;
  color: #e8e8e8;
}

.contact-quick-info p {
  color: #e8e8e8;
  margin-bottom: 8px;
}

/* ARTICLES SECTION */
.articles-section {
  padding: 60px 0;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-tag {
  padding: 10px 20px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  color: #4a4a4a;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tag:hover,
.filter-tag.active {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
}

.featured-article {
  background-color: #F4E8D8;
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  border: 1px solid #e8e8e8;
}

.featured-badge {
  display: inline-block;
  background-color: #E8945F;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.category-label {
  display: inline-block;
  padding: 6px 12px;
  background-color: #2D5F3F;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.article-content h2 {
  text-align: left;
  margin-bottom: 16px;
  font-size: 32px;
}

.article-meta {
  display: flex;
  gap: 24px;
  color: #888;
  font-size: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.article-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p {
  color: #666;
  font-size: 15px;
  flex-grow: 1;
}

/* POPULAR TOPICS */
.popular-topics {
  background-color: #fafafa;
  padding: 60px 0;
}

.topics-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.topic-link {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  color: #4a4a4a;
  font-weight: 500;
  transition: all 0.3s ease;
}

.topic-link:hover {
  background-color: #2D5F3F;
  color: #ffffff;
  border-color: #2D5F3F;
}

/* RELATED SERVICES */
.related-services {
  padding: 60px 0;
  text-align: center;
}

.related-services .services-grid {
  justify-content: center;
  margin-bottom: 32px;
}

.related-services .service-card {
  text-align: center;
}

.related-services .price {
  font-size: 28px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 16px;
  display: block;
}

/* GUIDE CATEGORIES */
.guide-categories {
  padding: 60px 0;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.categories-grid .category-card {
  position: relative;
  padding-bottom: 60px;
}

.guide-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

/* FEATURED GUIDES */
.featured-guides {
  background-color: #fafafa;
  padding: 60px 0;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.guide-card-large {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
}

.guide-card-large:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.difficulty-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #E8945F;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.guide-card-large h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.guide-meta {
  display: flex;
  gap: 16px;
  color: #888;
  font-size: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* SEASONAL CONTENT */
.seasonal-content {
  padding: 60px 0;
}

.season-badge {
  display: inline-block;
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.seasonal-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.seasonal-guide {
  flex: 1 1 300px;
  max-width: 380px;
  padding: 32px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
}

.seasonal-guide h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* DOWNLOADABLE RESOURCES */
.downloadable-resources {
  background-color: #fafafa;
  padding: 60px 0;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.resource-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.resource-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.resource-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.resource-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.format-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f0f0;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* EXPERT CONSULTATION */
.expert-consultation {
  padding: 60px 0;
}

.consultation-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5F3F;
  font-weight: 700;
  font-size: 18px;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card-detailed {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.service-card-detailed:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 24px;
  flex-wrap: wrap;
}

.service-header h3 {
  margin-bottom: 0;
  flex: 1;
}

.service-header .price {
  font-size: 32px;
  font-weight: 700;
  color: #2D5F3F;
  font-family: 'Playfair Display', serif;
}

.service-includes {
  margin: 24px 0;
}

.service-includes h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2D5F3F;
}

.service-includes ul {
  list-style: none;
  padding: 0;
}

.service-includes li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.service-includes li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #2D5F3F;
  font-weight: 700;
}

.service-duration {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #fafafa;
  padding: 60px 0;
}

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

.step-item {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #2D5F3F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
}

.step-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: #666;
}

/* TESTIMONIALS SERVICES */
.testimonials-services {
  padding: 60px 0;
}

.overall-rating {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  margin-top: 32px;
}

.overall-rating strong {
  color: #2D5F3F;
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

/* BOOKING FINAL */
.booking-final {
  background-color: #F4E8D8;
  padding: 60px 0;
  text-align: center;
}

.booking-content h2 {
  margin-bottom: 16px;
}

.booking-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 32px;
  color: #666;
}

.contact-info p {
  margin-bottom: 8px;
  color: #666;
}

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 0;
}

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

.method-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #fafafa;
  padding: 40px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.method-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.method-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.method-card h3 {
  margin-bottom: 16px;
}

.method-card a {
  color: #2D5F3F;
  font-weight: 600;
}

.quick-contact-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.quick-contact-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.quick-contact-badges img {
  width: 20px;
  height: 20px;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #fafafa;
  padding: 60px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border: 1px solid #e8e8e8;
}

.form-intro {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #2c2c2c;
  font-size: 15px;
}

.input-field,
.textarea-field {
  padding: 14px;
  border: 1px solid #d0d0d0;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #2D5F3F;
  box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: #4a4a4a;
  cursor: pointer;
}

.form-checkbox a {
  color: #2D5F3F;
  text-decoration: underline;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 0;
}

.location-content {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.location-details {
  flex: 1 1 300px;
}

.address {
  font-size: 18px;
  margin-bottom: 24px;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 300px;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  border: 1px solid #d0d0d0;
}

/* BUSINESS HOURS */
.business-hours {
  background-color: #fafafa;
  padding: 60px 0;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #2c2c2c;
}

.time {
  color: #666;
}

.appointment-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
}

/* TRUST REASSURANCE */
.trust-reassurance {
  padding: 60px 0;
}

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

.benefit-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
}

.benefit-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
}

/* LEGAL PAGES */
.legal-hero {
  padding: 60px 0 40px;
  background-color: #fafafa;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.last-updated {
  color: #888;
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 20px;
  color: #2D5F3F;
}

.legal-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  margin-top: 24px;
}

.legal-section h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2D5F3F;
}

.legal-section ul,
.legal-section ol {
  margin-left: 24px;
}

.legal-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-section th,
.legal-section td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e8e8e8;
}

.legal-section th {
  background-color: #fafafa;
  font-weight: 600;
  color: #2c2c2c;
}

.data-processing-table,
.cookie-table {
  font-size: 14px;
  overflow-x: auto;
  display: block;
}

.gdpr-rights-box {
  background-color: #F4E8D8;
  padding: 60px 0;
  text-align: center;
}

.rights-box {
  max-width: 900px;
  margin: 0 auto;
}

.rights-box h2 {
  margin-bottom: 32px;
}

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

.right-item {
  padding: 12px 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  font-weight: 500;
  font-size: 14px;
}

.rights-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.right-detail {
  flex: 1 1 280px;
  background-color: #fafafa;
  padding: 24px;
  border-left: 3px solid #2D5F3F;
}

.right-detail h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.right-detail p {
  font-size: 14px;
  color: #666;
}

.cookie-category {
  background-color: #fafafa;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 3px solid #2D5F3F;
}

.cookie-category h3 {
  margin-bottom: 12px;
}

.browser-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.browser-item {
  flex: 1 1 240px;
  background-color: #fafafa;
  padding: 20px;
}

.browser-item h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.browser-item p {
  font-size: 14px;
  color: #666;
}

.note {
  background-color: #fff8e6;
  padding: 16px;
  border-left: 4px solid #E8945F;
  margin: 24px 0;
  font-size: 14px;
}

.disclaimer-box {
  background-color: #fff8e6;
  padding: 32px;
  border-left: 4px solid #E8945F;
}

.important-notice {
  color: #2c2c2c;
}

.important-notice p {
  color: #2c2c2c;
  margin-bottom: 16px;
}

.user-responsibilities {
  background-color: #fafafa;
  padding: 60px 0;
}

.responsibilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.responsibility-item {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 24px;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.responsibility-item h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2D5F3F;
}

.responsibility-item p {
  font-size: 14px;
  color: #666;
}

.related-links {
  padding: 60px 0;
  background-color: #fafafa;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  background-color: #2D5F3F;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 0;
  background-color: #F4E8D8;
  text-align: center;
}

.thank-you-content h1 {
  font-size: 48px;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D5F3F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 16px;
  font-weight: 600;
}

.next-steps,
.explore-content,
.social-follow,
.contact-alternative,
.navigation-cta,
.confirmation-details,
.explore-more,
.return-home {
  padding: 60px 0;
}

.steps-card,
.content-card,
.explore-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.steps-card:hover,
.content-card:hover,
.explore-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

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

.content-card img,
.explore-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.urgent-note,
.community-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 24px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.social-icon {
  width: 48px;
  height: 48px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #2D5F3F;
  border-color: #2D5F3F;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.alternative-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-item {
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  padding: 24px;
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fafafa;
  padding: 32px;
  border-left: 4px solid #2D5F3F;
}

/* SPECIES GUIDE */
.species-guide {
  background-color: #fafafa;
  padding: 60px 0;
}

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

.species-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.species-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.species-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* SERVICE HIGHLIGHT */
.service-highlight {
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.service-highlight h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.service-highlight p {
  color: #e8e8e8;
  margin-bottom: 24px;
}

.highlight-content .service-price {
  color: #E8945F;
  margin-bottom: 24px;
}

/* BEHAVIOR CALLOUT */
.behavior-callout {
  background-color: #F4E8D8;
  padding: 60px 0;
}

.callout-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.callout-content h2 {
  margin-bottom: 16px;
}

.callout-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* SAFETY TIPS */
.safety-tips {
  padding: 60px 0;
}

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

.tip-card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #fafafa;
  padding: 32px;
  border-left: 4px solid #E8945F;
}

.tip-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5F3F;
}

.tip-card p {
  font-size: 15px;
  color: #666;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 60px 0;
  background-color: #fafafa;
}

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

.highlight-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
}

.highlight-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.highlight-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.highlight-item p {
  font-size: 14px;
  color: #666;
}

.services-hero .trust-indicators {
  margin-top: 24px;
  margin-bottom: 32px;
  justify-content: center;
}

.services-hero .trust-indicators span {
  color: #666;
  font-size: 14px;
  padding: 0 16px;
  border-right: 1px solid #d0d0d0;
}

.services-hero .trust-indicators span:last-child {
  border-right: none;
}

/* FOOTER - Clean & Minimal */
footer {
  background-color: #1a1a1a;
  color: #e8e8e8;
  padding: 60px 0 24px;
}

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

.footer-column {
  flex: 1 1 240px;
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 14px;
  color: #b8b8b8;
  line-height: 1.6;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

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

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #b8b8b8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #888;
  font-size: 13px;
}

.legal-links a:hover {
  color: #ffffff;
}

.copyright {
  color: #888;
  font-size: 13px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  padding: 24px;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #2D5F3F;
  text-decoration: underline;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #fafafa;
  border-left: 3px solid #2D5F3F;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2D5F3F;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #888;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .container {
    padding: 0 16px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Section spacing */
  section,
  .section {
    padding: 48px 0;
  }
  
  section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  /* Card grids */
  .category-grid,
  .services-grid,
  .values-grid,
  .testimonials-grid,
  .articles-grid,
  .guides-grid,
  .resources-grid {
    gap: 20px;
  }
  
  .category-card,
  .service-card,
  .article-card,
  .guide-card-large,
  .resource-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Featured article */
  .featured-article {
    padding: 24px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  /* Form */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* Service card detailed */
  .service-header {
    flex-direction: column;
  }
  
  /* Steps grid */
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  
  /* Trust indicators */
  .trust-indicators {
    gap: 24px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .main-nav {
    gap: 20px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* Accessibility improvements */
*:focus-visible {
  outline: 2px solid #2D5F3F;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

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

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* End of CSS */