/* ===================================
   VORTEX LITE - SOFT PASTEL DESIGN
   Modern Wellness Center CSS
   =================================== */

/* === 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;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fef9f5;
  overflow-x: hidden;
}

/* === SOFT PASTEL TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a4a4b;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #1a4a4b;
  text-shadow: 0 2px 4px rgba(26, 74, 75, 0.1);
}

h2 {
  font-size: 32px;
  color: #2C7A7B;
}

h3 {
  font-size: 24px;
  color: #1a4a4b;
}

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

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

a:hover {
  color: #38B2AC;
}

ul {
  list-style: none;
}

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

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

/* === HEADER === */
header {
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f0 100%);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(26, 74, 75, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(246, 173, 85, 0.2);
}

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

header img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(26, 74, 75, 0.1));
}

header nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: #2C7A7B;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(56, 178, 172, 0.05);
}

header nav a:hover {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 178, 172, 0.3);
}

.cta-btn {
  background: linear-gradient(135deg, #F6AD55 0%, #f39c6b 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);
  background: linear-gradient(135deg, #f39c6b 0%, #F6AD55 100%);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(44, 122, 123, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #fef9f5 0%, #fff5f0 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(26, 74, 75, 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: 20px;
  background: rgba(246, 173, 85, 0.2);
  color: #1a4a4b;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #2C7A7B;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(56, 178, 172, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  transform: translateX(8px);
}

/* === BUTTONS === */
.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(56, 178, 172, 0.4);
  background: linear-gradient(135deg, #2C7A7B 0%, #38B2AC 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #F6AD55 0%, #f39c6b 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);
}

.btn {
  background: rgba(56, 178, 172, 0.1);
  color: #2C7A7B;
  border: 2px solid #38B2AC;
}

.btn:hover {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  border-color: transparent;
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f0 50%, #fef4ee 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 173, 85, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 178, 172, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-primary,
.hero .btn-secondary {
  margin: 8px;
}

.trust-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(56, 178, 172, 0.1);
  border-radius: 20px;
  color: #2C7A7B;
  font-weight: 600;
  border: 2px solid rgba(56, 178, 172, 0.3);
}

.hero-internal,
.hero-blog,
.hero-contact {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero-internal h1,
.hero-blog h1,
.hero-contact h1 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-internal p,
.hero-blog p,
.hero-contact p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

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

/* === VALUE PROPOSITION === */
.value-proposition {
  background: linear-gradient(135deg, #fff5f0 0%, #fef9f5 100%);
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4a5568;
}

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

.stat {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
  font-weight: 600;
  color: #2C7A7B;
  font-size: 18px;
  text-align: center;
  border: 2px solid rgba(246, 173, 85, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(56, 178, 172, 0.2);
  border-color: #F6AD55;
}

/* === SERVICES === */
.services {
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f0 100%);
  text-align: center;
}

.service-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.card {
  flex: 1 1 320px;
  max-width: 380px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(26, 74, 75, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(246, 173, 85, 0.15);
  margin-bottom: 24px;
  position: relative;
}

.service-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(56, 178, 172, 0.25);
  border-color: #F6AD55;
}

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

.service-card p,
.card p {
  color: #4a5568;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #F6AD55;
  margin: 20px 0;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #F6AD55;
  margin: 24px 0;
  padding: 16px;
  background: rgba(246, 173, 85, 0.1);
  border-radius: 12px;
  display: inline-block;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #F6AD55 0%, #f39c6b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.highlight {
  border: 3px solid #F6AD55;
  background: linear-gradient(135deg, #fff5f0 0%, white 100%);
}

/* === PILLARS === */
.pillars {
  background: linear-gradient(135deg, #fff5f0 0%, #fef9f5 100%);
}

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

.pillar {
  flex: 1 1 250px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.08);
  border-left: 4px solid #38B2AC;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(56, 178, 172, 0.2);
  border-left-color: #F6AD55;
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f0 100%);
  text-align: center;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(26, 74, 75, 0.1);
  margin-bottom: 24px;
  border: 2px solid rgba(246, 173, 85, 0.2);
  transition: all 0.3s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.2);
}

.testimonial-card p {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  text-align: left;
}

.testimonial-card p strong {
  color: #1a4a4b;
  font-weight: 700;
  font-style: normal;
}

/* === CTA BANNER === */
.cta-banner,
.cta {
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 0;
}

.cta-banner h2,
.cta h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p,
.cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .btn-primary,
.cta .btn-primary {
  background: linear-gradient(135deg, #F6AD55 0%, #f39c6b 100%);
  box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

/* === LOCATION === */
.location {
  background: linear-gradient(135deg, #fff5f0 0%, #fef9f5 100%);
  text-align: center;
}

.hours {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* === TEAM === */
.team-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 280px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(56, 178, 172, 0.15);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.2);
  border-color: #F6AD55;
}

/* === ARTICLES & BLOG === */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  flex: 1 1 320px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(246, 173, 85, 0.15);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.2);
}

.category {
  display: inline-block;
  background: rgba(56, 178, 172, 0.15);
  color: #2C7A7B;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.meta {
  color: #718096;
  font-size: 14px;
  margin-top: 16px;
}

/* === FORMS === */
.contact-form-section {
  background: linear-gradient(135deg, #fff5f0 0%, #fef9f5 100%);
}

.form-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2d3748;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid rgba(56, 178, 172, 0.2);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #38B2AC;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

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

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

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

.note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, #fff5f0 0%, #fef9f5 100%);
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 24px auto;
}

.newsletter-form input {
  flex: 1 1 250px;
  padding: 14px 20px;
  border: 2px solid rgba(56, 178, 172, 0.2);
  border-radius: 25px;
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #38B2AC;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
  margin-top: 16px;
}

/* === INFO CARDS === */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  flex: 1 1 250px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
  border-top: 4px solid #38B2AC;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(56, 178, 172, 0.2);
}

/* === FAQ === */
.faq-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(26, 74, 75, 0.08);
  border-left: 4px solid #38B2AC;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(56, 178, 172, 0.15);
  border-left-color: #F6AD55;
}

.faq-item h3 {
  color: #1a4a4b;
  margin-bottom: 12px;
}

/* === LISTS === */
ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #38B2AC;
  font-weight: 700;
}

/* === ERROR PAGE === */
.error-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef9f5 0%, #fff5f0 100%);
}

.error-content h1 {
  font-size: 120px;
  color: #F6AD55;
  margin-bottom: 16px;
}

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

/* === THANK YOU PAGE === */
.thank-you {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #38B2AC 0%, #2C7A7B 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(56, 178, 172, 0.3);
}

.thank-you ol,
.thank-you ul {
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
}

.resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.resource-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(26, 74, 75, 0.1);
}

/* === LEGAL PAGES === */
.legal-page {
  background: white;
  padding: 60px 20px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p,
.legal-page ul {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1a4a4b 0%, #2C7A7B 100%);
  color: white;
  padding: 40px 20px 24px;
  margin-top: 60px;
}

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

.footer-info {
  flex: 1 1 300px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F6AD55;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4a4b 0%, #2C7A7B 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(26, 74, 75, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #F6AD55 0%, #f39c6b 100%);
  color: white;
}

.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn.settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  color: #1a4a4b;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(56, 178, 172, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(56, 178, 172, 0.2);
}

.cookie-category h4 {
  color: #2C7A7B;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  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: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: #38B2AC;
}

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

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

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

/* === TEXT-IMAGE SECTIONS === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* === FEATURE ITEMS === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  header nav {
    display: none;
  }
  
  .cta-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .stat {
    min-width: 100%;
  }
  
  .service-grid,
  .pillar-grid,
  .team-grid,
  .article-grid {
    flex-direction: column;
  }
  
  .service-card,
  .card {
    max-width: 100%;
  }
  
  .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .modal-content {
    padding: 24px;
  }
  
  .error-content h1 {
    font-size: 80px;
  }
  
  .helpful-links {
    flex-direction: column;
  }
  
  .helpful-links .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .price {
    font-size: 24px;
  }
  
  .btn, .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* === TABLET === */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-grid,
  .pillar-grid {
    gap: 20px;
  }
  
  .service-card,
  .pillar {
    flex: 1 1 calc(50% - 10px);
  }
}

/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid #F6AD55;
  outline-offset: 2px;
}

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

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header nav,
  .cta-btn {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}