/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #2d3436;
  background-color: #fafafa;
  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;
}

/* ===== SCANDINAVIAN CLEAN DESIGN VARIABLES ===== */
:root {
  --primary-color: #2C5F7C;
  --secondary-color: #8B4513;
  --accent-color: #E8D5B7;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --border-color: #dfe6e9;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 600;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

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

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

/* ===== HEADER ===== */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
}

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

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

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 999;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

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

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

.mobile-nav a {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary-color);
  padding-left: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #234a5f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.tagline, .subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.price-highlight {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 24px 0;
}

.stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stats-inline span {
  padding: 12px 24px;
  background-color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}

/* ===== CARDS & GRIDS ===== */
.benefits-grid,
.services-grid,
.testimonials-grid,
.features-grid,
.values-grid,
.stats-grid,
.pricing-grid,
.categories-grid,
.formats-grid,
.details-grid,
.packages-grid,
.methods-grid,
.team-grid,
.links-grid,
.tiers-grid,
.steps-grid,
.process-steps,
.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.testimonial-card,
.feature-card,
.value-card,
.stat-card,
.pricing-card,
.category-card,
.format-card,
.detail-item,
.package-card,
.method-card,
.team-member,
.link-card,
.tier-card,
.step,
.right-card,
.cookie-type-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.feature-card:hover,
.value-card:hover,
.pricing-card:hover,
.format-card:hover,
.package-card:hover,
.link-card:hover,
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card h3,
.service-card h3,
.feature-card h3,
.value-card h3,
.pricing-card h3,
.format-card h3,
.package-card h3,
.tier-card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card .price,
.pricing-card .plan-price,
.format-card .price,
.package-card .package-price,
.tier-card .tier-price {
  font-size: 28px;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 16px 0;
  font-family: var(--font-display);
}

.service-card .btn,
.package-card .btn,
.tier-card .btn,
.link-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--light-gray);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p:first-child {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.testimonial-card p:first-child::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--font-display);
}

.testimonial-card .author {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 16px;
}

/* ===== FEATURED CARDS ===== */
.featured {
  border: 2px solid var(--primary-color);
  position: relative;
}

.featured::before {
  content: 'POLECANE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.benefits,
.services-preview,
.location,
.story,
.mission,
.values,
.achievements,
.services,
.process,
.pricing-plans,
.how-it-works,
.membership-tiers,
.guarantee,
.catalog,
.features,
.workshop-categories,
.formats,
.workshop-details,
.packages,
.contact-methods,
.opening-hours,
.team-contact,
.booking,
.partnerships,
.policy-content,
.rodo-content,
.cookies-content,
.terms-content,
.confirmation,
.explore-more,
.contact-alternatives {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.benefits h2,
.services-preview h2,
.location h2,
.story h2,
.mission h2,
.values h2,
.achievements h2,
.services h2,
.process h2,
.pricing-plans h2,
.how-it-works h2,
.membership-tiers h2,
.catalog h2,
.features h2,
.workshop-categories h2,
.formats h2,
.workshop-details h2,
.packages h2,
.contact-methods h2,
.opening-hours h2,
.team-contact h2,
.booking h2,
.partnerships h2,
.confirmation h2,
.explore-more h2,
.contact-alternatives h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* ===== TEXT SECTIONS ===== */
.text-section,
.mission-content,
.location-details {
  max-width: 800px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission-block,
.address-block,
.hours-block,
.contact-block,
.transport-info {
  background-color: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.address-block,
.hours-block,
.contact-block {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 32px;
}

.cta-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-banner .btn {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary-color);
}

#cookie-banner.show {
  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;
}

.cookie-banner-text p {
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.cookie-btn-reject {
  background-color: var(--medium-gray);
  color: var(--text-dark);
}

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

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

.cookie-btn-settings:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== 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: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-modal-header h3 {
  color: var(--text-dark);
  font-size: 24px;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--text-dark);
  transform: rotate(90deg);
}

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

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

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--text-dark);
}

.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: var(--medium-gray);
  transition: 0.3s;
  border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary-color);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.cookie-modal-buttons .cookie-btn {
  flex: 1 1 auto;
}

/* ===== CATEGORIES & TAGS ===== */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.category-tag {
  padding: 12px 24px;
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
}

.category-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== STATS ===== */
.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-card h3 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.stat-card p {
  font-size: 16px;
  color: var(--text-light);
}

/* ===== HOURS TABLE ===== */
.hours-table {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--light-gray);
  align-items: center;
}

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

.hours-row .day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-row .time {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== LISTS ===== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 24px;
}

li {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===== POLICY SECTIONS ===== */
.policy-section,
.rodo-section,
.cookies-section,
.terms-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.policy-section h2,
.rodo-section h2,
.cookies-section h2,
.terms-section h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 24px;
}

.policy-section h3,
.rodo-section h3,
.cookies-section h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.last-update,
.effective-date {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

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

.cookie-list {
  margin-top: 24px;
}

.cookie-item {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary-color);
}

.cookie-item h4 {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.cookie-item p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* ===== THANK YOU PAGE ===== */
.hero.thank-you {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27ae60;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-md);
}

.confirmation-details,
.confirmation {
  text-align: center;
  padding: 60px 20px;
}

.confirmation-details h2,
.confirmation h2 {
  margin-bottom: 32px;
}

.next-steps {
  margin-top: 48px;
}

.response-info {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  margin-top: 32px;
  font-style: italic;
}

/* ===== BOOKING ===== */
.booking-options,
.partnership-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.booking-option,
.partnership-type {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  border-left: 4px solid var(--primary-color);
}

.booking-option h3,
.partnership-type h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ===== MEMBERSHIP LEVELS ===== */
.level,
.plan-books,
.duration {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.savings {
  color: #27ae60;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

/* ===== CONTACT VALUES ===== */
.contact-value {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 12px 0;
}

.response-time {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

.role,
.email {
  font-size: 14px;
  color: var(--text-light);
}

.role {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ===== PACKAGE CONTENT ===== */
.package-content,
.tier-price {
  font-size: 16px;
  color: var(--text-dark);
  margin: 12px 0;
  font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .tagline, .subtitle {
    font-size: 18px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Card adjustments */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .feature-card,
  .value-card,
  .stat-card,
  .pricing-card,
  .category-card,
  .format-card,
  .package-card,
  .method-card,
  .team-member,
  .link-card,
  .tier-card,
  .step,
  .booking-option,
  .partnership-type {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Section padding */
  .section,
  .hero,
  .benefits,
  .services-preview,
  .testimonials,
  .cta-banner {
    padding: 40px 16px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Stats inline */
  .stats-inline {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stats-inline span {
    text-align: center;
  }
  
  /* Hours table */
  .hours-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  /* Location info */
  .address-block,
  .hours-block,
  .contact-block {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .service-card .price,
  .pricing-card .plan-price,
  .format-card .price,
  .package-card .package-price,
  .tier-card .tier-price {
    font-size: 24px;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
  
  .benefit-card,
  .service-card,
  .policy-section,
  .rodo-section,
  .cookies-section,
  .terms-section {
    padding: 24px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth scroll for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  footer {
    display: none;
  }
}