/* ===================================
   SPEEDY MIRROR - MONOCHROME SOPHISTICATED
   Modern Photography Studio
   =================================== */

/* 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', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MONOCHROME SOPHISTICATED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #333333;
}

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

ul {
  list-style: none;
}

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

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

/* HEADER - ELEGANT MONOCHROME */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  padding: 80px 30px 30px;
  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: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #000000;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

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

/* BUTTONS - MONOCHROME SOPHISTICATED */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000000;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* HERO SECTION - DRAMATIC CONTRAST */
.hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 120px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  font-weight: 300;
}

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

/* HERO INTERNAL PAGES */
.hero-internal {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* SECTIONS - SOPHISTICATED SPACING */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
}

.text-section p {
  margin-bottom: 20px;
}

/* SERVICES GRID - FLEXBOX LAYOUT */
.services-preview,
.services-overview {
  background-color: #f8f8f8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.service-card,
.service-detail {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.service-card h3,
.service-detail h3 {
  color: #000000;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.service-detail p {
  color: #666666;
  flex-grow: 1;
  margin-bottom: 12px;
}

.service-card ul,
.service-detail ul {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.service-card li,
.service-detail li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #666666;
}

.service-card li::before,
.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
}

/* VALUE PROPOSITION - FLEXBOX */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.benefit {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 24px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  margin-bottom: 20px;
}

.benefit h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit p {
  color: #666666;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials,
.testimonials-workshops {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #000000;
  font-style: normal;
  margin-top: 8px;
}

/* CTA BANNER - DRAMATIC */
.cta-banner,
.cta-section,
.cta-booking,
.cta-inspired,
.cta-register,
.cta-custom-quote {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2,
.cta-booking h2,
.cta-inspired h2,
.cta-register h2,
.cta-custom-quote h2 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-banner p,
.cta-section p,
.cta-booking p,
.cta-inspired p,
.cta-register p,
.cta-custom-quote p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn,
.cta-section .btn {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  margin: 0 8px 8px;
}

.cta-banner .btn:hover,
.cta-section .btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

/* STORY & MISSION */
.story,
.mission-vision,
.approach {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values-grid,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 40px 0;
}

.value-card,
.principle {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.value-card h3,
.principle h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 22px;
}

.value-card p,
.principle p {
  color: #666666;
}

.values-list {
  list-style: none;
  margin-top: 32px;
  padding: 0;
}

.values-list li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #333333;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}

.values-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 12px;
}

/* PORTFOLIO */
.portfolio-intro {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  min-width: 150px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-categories,
.featured-projects {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.category-section,
.project-card {
  padding: 32px;
  margin-bottom: 32px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
}

.category-section h3,
.project-card h3 {
  color: #000000;
  margin-bottom: 16px;
  font-size: 24px;
}

.category-section p,
.project-card p {
  color: #666666;
  margin-bottom: 12px;
}

.highlight,
.client-quote {
  font-style: italic;
  color: #000000;
  padding: 16px;
  background-color: #ffffff;
  border-left: 2px solid #000000;
  margin-top: 16px;
}

/* WORKSHOPS */
.workshops-intro,
.workshops-levels,
.what-you-get {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits-list {
  list-style: none;
  margin-top: 24px;
  padding: 0;
}

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

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

.level-card {
  padding: 32px;
  margin-bottom: 32px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.level-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

/* PRICING */
.pricing-intro,
.pricing-tables,
.payment-terms {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.note,
.discount {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

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

.pricing-card {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.pricing-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: #000000;
  border-width: 3px;
  transform: scale(1.02);
}

.pricing-card h3 {
  color: #000000;
  margin-bottom: 16px;
  font-size: 22px;
}

.pricing-card .price {
  font-size: 32px;
  color: #000000;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-card ul {
  flex-grow: 1;
  margin: 16px 0;
}

.pricing-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #666666;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.pricing-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* CONTACT */
.contact-methods,
.contact-form-section,
.visit-studio,
.consultation-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #000000;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-card p {
  color: #666666;
}

.form-note {
  background-color: #f8f8f8;
  padding: 32px;
  border-left: 4px solid #000000;
  margin-top: 32px;
}

.form-note p {
  color: #333333;
  margin-bottom: 12px;
}

.form-note ul {
  list-style: none;
  margin-top: 16px;
}

.form-note li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #666666;
}

.form-note li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

.address-block,
.hours-block {
  background-color: #f8f8f8;
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid #000000;
}

/* THANK YOU PAGE */
.hero-thank-you {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-thank-you h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.message,
.confirmation {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.next-steps,
.while-you-wait,
.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step,
.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  text-align: center;
  margin-bottom: 20px;
}

.step h3,
.suggestion-card h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 20px;
}

.time {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 12px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content .section {
  margin-bottom: 40px;
  padding: 0;
}

.legal-content h2 {
  color: #000000;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
}

.legal-content ul {
  list-style: none;
  margin-top: 16px;
}

.legal-content li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #666666;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

/* FOOTER - ELEGANT */
footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

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

.footer-col p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-cookie-accept {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

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

.btn-cookie-reject,
.btn-cookie-settings {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

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

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

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

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

.cookie-modal h2 {
  color: #000000;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

.cookie-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: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero { padding: 80px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-tagline { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  /* Grids to Single Column */
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .values-grid,
  .principles-grid,
  .stats-grid,
  .pricing-grid,
  .contact-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .service-detail,
  .benefit,
  .testimonial-card,
  .value-card,
  .principle,
  .stat,
  .pricing-card,
  .contact-card,
  .step,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content { flex-direction: column; }
  
  /* Cookie Banner */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-buttons .btn { width: 100%; }
  
  /* Sections */
  section { padding: 32px 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  .btn { padding: 12px 24px; font-size: 13px; }
  
  .mobile-menu { width: 90%; max-width: none; }
}

/* SMOOTH TRANSITIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a, button, .btn {
  transition: all 0.3s ease;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner { display: none; }
  body { font-size: 12pt; color: #000000; }
  a { text-decoration: underline; }
}