/* ============================================
   BIURO PRESTIGE - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - ELEGANT CLASSIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a252f;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

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

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

a:hover {
  color: #d35400;
}

ul {
  list-style: none;
}

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

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

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

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

/* ============================================
   HEADER - ELEGANT CLASSIC
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #e8e4df;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2c2c2c;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

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

.main-nav a:hover {
  color: #d35400;
}

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

/* ============================================
   MOBILE MENU - RESPONSIVE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1a252f;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Garamond', serif;
  font-size: 18px;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4df;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #d35400;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ============================================
   HERO SECTION - ELEGANT CLASSIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #e8e4df;
}

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

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

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

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

/* ============================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-align: center;
}

.btn-primary {
  background-color: #1a252f;
  color: #ffffff;
  border-color: #1a252f;
}

.btn-primary:hover {
  background-color: #d35400;
  border-color: #d35400;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 84, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1a252f;
  border-color: #1a252f;
}

.btn-secondary:hover {
  background-color: #1a252f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 37, 47, 0.2);
}

/* ============================================
   SECTIONS - ELEGANT SPACING
   ============================================ */

.value-proposition,
.services,
.testimonials,
.cta-section,
.about-story,
.values,
.achievements,
.approach,
.introduction,
.gift-sets,
.customization,
.occasions,
.b2b-benefits,
.pricing,
.faq,
.contact-methods,
.contact-form-section,
.contact-details,
.showroom,
.legal-content {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.value-proposition {
  background-color: #ffffff;
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
}

.services {
  background-color: #faf8f5;
}

.testimonials {
  background-color: #f0ebe3;
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, #1a252f 0%, #34495e 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: #e8e4df;
  font-size: 20px;
  margin-bottom: 32px;
}

/* ============================================
   FEATURES GRID - FLEXBOX ONLY
   ============================================ */

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.feature {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: #d35400;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  color: #1a252f;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ============================================
   SERVICES/PRODUCTS GRID - FLEXBOX
   ============================================ */

.services-grid,
.products-grid,
.sets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.service-card,
.product-card,
.set-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.product-card:hover,
.set-card:hover {
  border-color: #d35400;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3,
.product-card h3,
.set-card h3 {
  color: #1a252f;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.product-card p,
.set-card p {
  color: #4a4a4a;
  flex-grow: 1;
  margin-bottom: 16px;
}

.price {
  font-family: 'Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #d35400;
  margin: 16px 0;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 36px;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  border-left: 4px solid #d35400;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: #1a252f;
  font-size: 16px;
  margin-top: 20px;
}

.stats {
  margin-top: 40px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.stats p {
  font-size: 18px;
  color: #2c2c2c;
  font-weight: 600;
  text-align: center;
}

/* ============================================
   STATS GRID - FLEXBOX
   ============================================ */

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

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #d35400;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat h3 {
  font-size: 48px;
  color: #d35400;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat p {
  color: #4a4a4a;
  font-size: 16px;
}

/* ============================================
   STEPS GRID - FLEXBOX
   ============================================ */

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #d35400;
  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: 'Garamond', serif;
}

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

.step p {
  color: #4a4a4a;
  font-size: 16px;
}

/* ============================================
   PRICING TIERS - FLEXBOX
   ============================================ */

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

.tier {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tier:hover {
  border-color: #d35400;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.tier.featured {
  border-color: #d35400;
  border-width: 3px;
  transform: scale(1.05);
}

.tier h3 {
  font-size: 20px;
  color: #1a252f;
  margin-bottom: 16px;
}

.discount {
  font-size: 36px;
  font-weight: 700;
  color: #d35400;
  margin: 20px 0;
  display: block;
}

/* ============================================
   CATEGORIES & TAGS
   ============================================ */

.categories {
  margin-bottom: 40px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.category-list,
.benefits-list,
.occasions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.category-tag,
.benefit-tag,
.occasion,
.amenity {
  padding: 10px 20px;
  background-color: #f0ebe3;
  color: #2c2c2c;
  border-radius: 24px;
  font-size: 14px;
  border: 1px solid #e8e4df;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-tag:hover,
.benefit-tag:hover,
.occasion:hover,
.amenity:hover {
  background-color: #d35400;
  color: #ffffff;
  border-color: #d35400;
  transform: translateY(-2px);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  padding: 28px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d35400;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ============================================
   PAGE HERO - BREADCRUMB
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #f0ebe3 0%, #faf8f5 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid #e8e4df;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #4a4a4a;
  text-align: left;
}

.breadcrumb a {
  color: #34495e;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #d35400;
}

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

/* ============================================
   TEXT SECTIONS
   ============================================ */

.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.text-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE ELEMENTS
   ============================================ */

.details-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.detail,
.resource {
  flex: 1 1 calc(50% - 14px);
  min-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
  margin-bottom: 20px;
}

.detail h3,
.resource h3 {
  color: #1a252f;
  font-size: 22px;
  margin-bottom: 16px;
}

.detail p,
.resource p {
  color: #4a4a4a;
  line-height: 1.7;
}

.contact-info {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.contact-note {
  text-align: center;
  margin-top: 24px;
  font-style: italic;
  color: #4a4a4a;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.form-intro {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
  text-align: center;
}

.form-note {
  padding: 24px;
  background-color: #f0ebe3;
  border-radius: 8px;
  border-left: 4px solid #d35400;
  margin-top: 24px;
}

.form-note p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.form-note strong {
  color: #1a252f;
  font-weight: 600;
}

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

.legal-content {
  background-color: #ffffff;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.content-wrapper h2 {
  color: #1a252f;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8e4df;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 24px;
}

.content-wrapper li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #4a4a4a;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background-color: #ffffff;
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid #e8e4df;
}

.cookies-table th {
  background-color: #f0ebe3;
  color: #1a252f;
  font-weight: 600;
  font-family: 'Garamond', serif;
}

.cookies-table td {
  color: #4a4a4a;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #f0ebe3 0%, #faf8f5 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  animation: successPulse 1.5s ease infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you-hero h1 {
  font-size: 48px;
  color: #1a252f;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #4a4a4a;
}

.thank-you-content,
.next-steps,
.additional-resources,
.contact-reminder,
.social-proof {
  padding: 60px 20px;
}

.thank-you-content {
  background-color: #ffffff;
}

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

.confirmation-note,
.note {
  text-align: center;
  font-style: italic;
  color: #4a4a4a;
  margin-top: 24px;
}

/* ============================================
   FOOTER - ELEGANT CLASSIC
   ============================================ */

footer {
  background-color: #1a252f;
  color: #e8e4df;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 3px solid #d35400;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Garamond', serif;
}

.footer-section p {
  color: #e8e4df;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #e8e4df;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-nav a:hover {
  color: #d35400;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #34495e;
}

.footer-bottom p {
  color: #e8e4df;
  font-size: 14px;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 3px solid #d35400;
  padding: 24px 20px;
  z-index: 950;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid #1a252f;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-btn.accept {
  background-color: #1a252f;
  color: #ffffff;
}

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

.cookie-btn.reject,
.cookie-btn.settings {
  background-color: transparent;
  color: #1a252f;
}

.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background-color: #f0ebe3;
}

/* Cookie Preferences Modal */
#cookie-preferences {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 37, 47, 0.85);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#cookie-preferences.show {
  display: flex;
}

.cookie-modal {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal h2 {
  color: #1a252f;
  font-size: 32px;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #faf8f5;
  border-radius: 8px;
  border: 2px solid #e8e4df;
}

.cookie-category h3 {
  color: #1a252f;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

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

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

input:checked + .toggle-slider {
  background-color: #d35400;
}

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

.toggle-slider.disabled {
  background-color: #1a252f;
  cursor: not-allowed;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .features-grid {
    flex-direction: column;
  }
  
  .feature {
    flex: 1 1 100%;
  }
  
  .service-card,
  .product-card,
  .set-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .pricing-grid {
    flex-direction: column;
  }
  
  .tier {
    flex: 1 1 100%;
  }
  
  .tier.featured {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-modal {
    padding: 24px;
  }
  
  .details-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .detail,
  .resource {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .product-card,
  .set-card,
  .feature,
  .detail,
  .resource {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .cookie-modal {
    padding: 20px;
  }
  
  .cookie-modal h2 {
    font-size: 24px;
  }
}

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

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.p-40 {
  padding: 40px;
}

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

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

.slide-up {
  animation: slideUp 0.6s ease;
}

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

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid #d35400;
  outline-offset: 2px;
}

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