/* Design System */
:root {
  /* Colors - Light theme with grey-blue blocks and bright lemon accents */
  --color-bg: #ffffff;
  --color-surface: #f8f9fb;
  --color-primary: #4a5f7f;
  --color-accent: #f4e04d;
  --color-text-main: #1a2332;
  --color-text-muted: #6b7a8f;
  --color-border: #dce1e8;
  --color-success: #28a745;
  --color-error: #dc3545;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4a5f7f 0%, #6b8caf 100%);
  --gradient-accent: linear-gradient(135deg, #f4e04d 0%, #f9ec7a 100%);
  --gradient-hero: linear-gradient(135deg, #3a4f6f 0%, #4a5f7f 50%, #5a7090 100%);

  /* Fonts */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-main);
}
.iti{
  width: 100%;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1.2rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
}

.site-header.scrolled .navbar-brand {
  color: var(--color-primary) !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.site-header.scrolled .nav-link {
  color: var(--color-text-main) !important;
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

.btn-nav-cta {
  background: var(--gradient-accent);
  color: var(--color-text-main) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  padding: 140px 0 100px;
  background: var(--gradient-hero);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(80px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-cta .btn {
  margin: 0.5rem;
}

.hero-checklist ul {
  list-style: none;
}

.hero-checklist li {
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
  color: rgba(255, 255, 255, 0.95);
}

.hero-checklist i {
  color: var(--color-accent);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.2rem;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Styles */
.section-light {
  padding: var(--section-padding);
  background-color: var(--color-bg);
}

.section-grey {
  padding: var(--section-padding);
  background-color: var(--color-surface);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* Module Cards (Program Structure) */
.module-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--color-accent);
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.module-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.module-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.module-goal {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.module-outcomes {
  list-style: none;
  margin-bottom: 1rem;
}

.module-outcomes li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--color-text-muted);
}

.module-outcomes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.module-practice {
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Audience Cards */
.audience-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.audience-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-icon i {
  font-size: 2rem;
  color: var(--color-primary);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 0.95rem;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: -30px;
  width: 2px;
  background: var(--color-border);
}

.process-step:last-child::before {
  display: none;
}

.step-marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.step-content {
  flex: 1;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p strong {
  color: var(--color-primary);
}

/* Format Cards */
.format-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.format-card h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.format-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-right: 0.5rem;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 3px solid var(--color-primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1rem;
}

.service-card ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--color-text-muted);
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Result Cards */
.result-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--card-padding);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.result-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.result-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.result-card ul {
  list-style: none;
}

.result-card ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  color: var(--color-text-muted);
}

.result-card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Case Study Box */
.case-study-box {
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.case-study-box h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.case-study-box h3 i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.case-study-box p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.case-study-box p strong {
  color: var(--color-primary);
}

/* FAQ Section */
.accordion-item {
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-button {
  background-color: #ffffff;
  color: var(--color-text-main);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-surface);
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-accent);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(244, 224, 77, 0.25);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.response-note {
  margin-top: 1rem;
  color: var(--color-text-muted);
}

.response-note i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.9;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--color-primary);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* CTA Final Section */
.cta-final {
  padding: 80px 0;
  background: var(--gradient-accent);
  text-align: center;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-final .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 20px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
}

.footer-contact i {
  color: var(--color-accent);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-domain {
  margin-top: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Service Page Specific Styles */
.service-hero {
  padding: 140px 0 80px;
  background: var(--gradient-primary);
  color: #ffffff;
}

.service-hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.use-case-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.use-case-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.use-case-card h3 i {
  color: var(--color-accent);
  margin-right: 0.75rem;
}

.problem-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-error);
  height: 100%;
}

.problem-box h3 {
  color: var(--color-error);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.problem-box h3 i {
  margin-right: 0.5rem;
}

.delivery-step {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--color-primary);
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.delivery-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.delivery-info h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.delivery-info h4 i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.benefit-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.cta-service {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: #ffffff;
}

.cta-service h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-service .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Contact Page Styles */
.page-header {
  padding: 140px 0 60px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

.contact-info-box {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-info-item h4 {
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  margin: 0;
}

.map-placeholder {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-box {
  background: var(--color-primary);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.map-box i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.map-box p {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

/* Legal Pages */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.legal-page h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.cookie-settings-btn-wrapper {
  margin: 2rem 0;
  text-align: center;
}

/* Thank You Page */
.thank-you-section {
  padding: 140px 0 100px;
  background: var(--color-surface);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon i {
  font-size: 3rem;
  color: var(--color-primary);
}

.thank-you-section h1 {
  margin-bottom: 1rem;
}

.thank-you-actions {
  margin-top: 2.5rem;
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--color-text-main);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn {
  padding: 0.75rem 1.5rem;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
}

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

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}

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

.cookie-category h4 {
  margin: 0;
  font-size: 1.1rem;
}

.cookie-category p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: 0.4s;
  border-radius: 24px;
}

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

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

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

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

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(74, 95, 127, 0.98);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step::before {
    left: 24px;
    top: 60px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}
