/* CSS Reset and Base Styles */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography - Minimalist Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #2C5F6F;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 200;
}

h2 {
  font-size: 32px;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
}

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

a:hover {
  color: #2C5F6F;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

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

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

/* Header - Minimalist Clean Design */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

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

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

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

.main-nav a {
  color: #2C5F6F;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #4A90A4;
  color: #4A90A4;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  color: #2C5F6F;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #2C5F6F;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #4A90A4;
  padding-left: 8px;
}

/* Buttons - Clean Minimalist Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #4A90A4;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(74, 144, 164, 0.2);
}

.btn-primary:hover {
  background-color: #2C5F6F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F6F;
  border: 1px solid #2C5F6F;
}

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

/* Hero Section - Minimalist with Space */
.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 80px 0;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 24px;
  color: #2C5F6F;
}

.hero-subheadline {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.trust-badge {
  font-size: 14px;
  color: #4A90A4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page Hero */
.page-hero {
  background-color: #F8F8F8;
  padding: 60px 0 40px;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #8A8A8A;
}

.breadcrumb a {
  color: #4A90A4;
}

/* Sections */
section {
  margin-bottom: 80px;
  padding: 0 20px;
}

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

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

/* Value Proposition - Flexbox Grid */
.values-grid,
.features-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-item,
.feature-item,
.benefit-item {
  background: #FFFFFF;
  padding: 32px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item:hover,
.feature-item:hover,
.benefit-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  border-color: #4A90A4;
}

.value-item h3,
.feature-item h3,
.benefit-item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #2C5F6F;
}

.value-item p,
.feature-item p,
.benefit-item p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Services/Products Grid - Flexbox */
.services-grid,
.products-grid,
.collections {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-card,
.product-card,
.collection-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover,
.product-card:hover,
.collection-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: #4A90A4;
}

.service-card h3,
.product-card h3,
.collection-card h2 {
  font-size: 20px;
  font-weight: 400;
  color: #2C5F6F;
  margin-bottom: 12px;
}

.service-card p,
.product-card p,
.collection-card p {
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
}

.price,
.price-from {
  font-size: 24px;
  font-weight: 500;
  color: #2C5F6F;
  margin-top: auto;
}

.features,
.elements {
  font-size: 13px;
  color: #8A8A8A;
  font-style: italic;
  margin: 8px 0;
}

/* Process Steps - Flexbox */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.step {
  background: #F8F8F8;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step:hover {
  background: #E8F4F8;
  transform: translateY(-4px);
}

.step h3 {
  font-size: 18px;
  font-weight: 400;
  color: #2C5F6F;
  margin-bottom: 12px;
}

/* Testimonials - Dark Text for Readability */
.testimonials {
  background-color: #F8F8F8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card .author {
  font-style: normal;
  color: #4A4A4A;
  margin-top: auto;
}

.testimonial-card .author strong {
  color: #2C5F6F;
  font-weight: 500;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #4A90A4 0%, #2C5F6F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 4px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #2C5F6F;
}

.cta-banner .btn-primary:hover {
  background-color: #E8F4F8;
  color: #2C5F6F;
}

.trust-element {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.9;
}

/* Contact Preview */
.contact-preview {
  background-color: #F8F8F8;
  padding: 60px 20px;
  text-align: center;
}

.contact-preview h2 {
  margin-bottom: 24px;
}

.contact-preview p {
  margin-bottom: 8px;
}

/* Guides and Styles - Flexbox Grid */
.guides,
.styles-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.guide-card,
.style-card,
.tip-item {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card:hover,
.style-card:hover,
.tip-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.topics,
.products {
  font-size: 13px;
  color: #4A90A4;
  font-weight: 500;
  margin-top: 8px;
}

/* Contact Methods - Flexbox */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}

.method-card {
  background: #F8F8F8;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method-card h3 {
  color: #2C5F6F;
  margin-bottom: 12px;
}

.note {
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
}

/* Consultation Section */
.consultation {
  background-color: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
  border-radius: 4px;
}

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

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

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

.consultation-types {
  font-size: 14px;
  color: #4A4A4A;
  margin: 24px 0;
}

/* Location and Transport */
.transport-info {
  background: #F8F8F8;
  padding: 32px;
  border-radius: 4px;
  margin-top: 32px;
  text-align: left;
}

.transport-info h3 {
  margin-bottom: 16px;
}

.transport-info p {
  margin-bottom: 12px;
}

/* FAQ */
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 400;
  color: #2C5F6F;
  margin-bottom: 12px;
}

/* Legal Pages */
.legal-page {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content ul {
  margin: 16px 0;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
  margin-bottom: 32px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4A90A4;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: checkmarkPop 0.6s ease;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  text-align: center;
  padding: 40px 20px;
}

.next-steps {
  padding: 40px 20px;
}

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

.step-card {
  background: #F8F8F8;
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showroom-reminder {
  background-color: #E8F4F8;
  padding: 60px 20px;
  text-align: center;
  border-radius: 4px;
}

/* Story and Text Sections */
.story,
.customization {
  max-width: 900px;
  margin: 0 auto 60px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showroom-info,
.certifications {
  background-color: #F8F8F8;
  padding: 60px 20px;
  border-radius: 4px;
  margin-bottom: 60px;
}

.contact-details {
  margin: 32px 0;
}

.cert-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto;
}

.cert-list li {
  padding: 12px 0 12px 32px;
  position: relative;
}

.cert-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A90A4;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #2C5F6F;
  color: #FFFFFF;
  padding: 60px 0 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 calc(25% - 30px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

.footer-col nav a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

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

.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: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  padding: 24px;
  z-index: 950;
  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-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #4A4A4A;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 13px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.cookie-accept {
  background-color: #4A90A4;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #2C5F6F;
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #2C5F6F;
  border: 1px solid #2C5F6F;
}

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2C5F6F;
  width: 32px;
  height: 32px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #4A4A4A;
}

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

.cookie-toggle.active {
  background: #4A90A4;
}

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

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    margin-bottom: 60px;
  }
  
  section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  /* Grids - Stack on mobile */
  .values-grid,
  .features-grid,
  .benefits-grid,
  .services-grid,
  .products-grid,
  .collections,
  .testimonials-grid,
  .guides,
  .styles-grid,
  .tips-grid,
  .methods-grid,
  .process-steps,
  .steps-grid {
    flex-direction: column;
  }
  
  .value-item,
  .feature-item,
  .benefit-item,
  .service-card,
  .product-card,
  .collection-card,
  .testimonial-card,
  .guide-card,
  .style-card,
  .tip-item,
  .method-card,
  .step,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust columns for tablet */
  .value-item,
  .feature-item,
  .benefit-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .service-card,
  .product-card,
  .collection-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Smooth Scrolling */
html {
  scroll-padding-top: 100px;
}

/* Selection Color */
::selection {
  background: #4A90A4;
  color: #FFFFFF;
}

::-moz-selection {
  background: #4A90A4;
  color: #FFFFFF;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #4A90A4;
  outline-offset: 2px;
}

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

.value-item,
.service-card,
.product-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Ensure proper spacing between all elements */
.value-item,
.feature-item,
.benefit-item,
.service-card,
.product-card,
.collection-card,
.testimonial-card,
.guide-card,
.style-card,
.tip-item,
.method-card,
.step,
.step-card,
.faq-item {
  margin-bottom: 20px;
}

/* Prevent any absolute positioning overlap */
.container > * {
  position: relative;
  z-index: 1;
}

/* Ensure adequate gap in all flex containers */
.values-grid,
.features-grid,
.benefits-grid,
.services-grid,
.products-grid,
.collections,
.testimonials-grid,
.guides,
.styles-grid,
.tips-grid,
.methods-grid,
.process-steps,
.steps-grid,
.footer-content {
  gap: 32px;
}

/* Mobile gap adjustment */
@media (max-width: 768px) {
  .values-grid,
  .features-grid,
  .benefits-grid,
  .services-grid,
  .products-grid,
  .collections,
  .testimonials-grid,
  .guides,
  .styles-grid,
  .tips-grid,
  .methods-grid,
  .process-steps,
  .steps-grid,
  .footer-content {
    gap: 24px;
  }
}