
:root {
  --primary: #F9F7F3;
  --secondary: #D9E5EC;
  --accent: #7A9AAF;
  --dark: #3C4C59;
  --wood: #D2B48C;
  --text: #2C3E50;
  --light-text: #7F8C8D;
  --success: #27AE60;
  --error: #E74C3C;
  --background: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--dark);
  text-decoration: underline;
}

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

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

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

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

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

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
}

.btn:hover, .btn:focus {
  background-color: var(--dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--accent);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}


.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}


.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.my-1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-2 { margin-top: 1rem; margin-bottom: 1rem; }
.my-3 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-4 { margin-top: 2rem; margin-bottom: 2rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }


.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-minimized {
  transform: translateY(-100%);
}

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

.logo {
  height: 40px;
  display: block;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.9;
}


.nav-orb-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.nav-orb {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-orb:hover, .nav-orb:focus {
  transform: scale(1.05);
  background-color: var(--dark);
}

.nav-orb i {
  color: white;
  font-size: 1.5rem;
}

.nav-menu {
  position: absolute;
  bottom: 75px;
  right: 0;
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-list {
  list-style: none;
}

.nav-menu-item {
  margin-bottom: 0.5rem;
}

.nav-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
  transition: var(--transition);
}

.nav-menu-link:hover, .nav-menu-link:focus {
  background-color: var(--primary);
  color: var(--accent);
  text-decoration: none;
}


.hero {
  position: relative;
  padding: 8rem 0 5rem;
  background-color: var(--primary);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-background.jpg') center center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

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

.hero-title {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero-subtitle {
  color: var(--dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-typed {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
}

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


.about-project {
  background-color: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 16px var(--shadow);
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}


.metrics {
  background-color: var(--primary);
  padding: 5rem 0;
}

.metric-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.metric-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.metric-description {
  color: var(--light-text);
}


.articles {
  padding: 5rem 0;
}

.article-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

.article-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
}

.article-date {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: var(--text);
  margin-bottom: 1.5rem;
}


.cta-form-section {
  background-color: var(--primary);
  padding: 5rem 0;
}

.form-container {
  background-color: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 16px var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 154, 175, 0.2);
}

.form-text {
  font-size: 0.875rem;
  color: var(--light-text);
  margin-top: 0.25rem;
}

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

.form-checkbox {
  margin-right: 0.5rem;
}

.form-check-label {
  font-size: 0.875rem;
}


.steps {
  padding: 5rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}

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

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.about-section {
  padding: 8rem 0 5rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.about-content {
  padding: 0 2rem;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 1rem 2rem;
  position: relative;
  width: 50%;
  margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  top: 20px;
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
}

.timeline-date {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline-container::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem;
    padding-right: 1rem;
  }
  
  .timeline-item::before {
    left: 21px !important;
  }
}


.reflections-section {
  padding: 8rem 0 5rem;
}

.article-full {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
}

.article-full-header {
  margin-bottom: 2rem;
}

.article-full-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-full-meta {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.article-full-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.article-full-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-full-content p {
  margin-bottom: 1.5rem;
}

.article-full-content h2, .article-full-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-full-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--light-text);
  margin: 2rem 0;
}


.simulator-section {
  padding: 5rem 0;
  background-color: var(--primary);
}

.simulator-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.simulator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.simulator-form-group {
  margin-bottom: 1.5rem;
}

.simulator-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.simulator-form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.simulator-form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 154, 175, 0.2);
}

.slider-container {
  width: 100%;
  margin-top: 0.5rem;
}

.simulator-results {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary);
}

.result-item {
  margin-bottom: 1.5rem;
}

.result-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 1.5rem;
  color: var(--accent);
}

.timeline {
  margin-top: 3rem;
  position: relative;
  height: 80px;
}

.timeline-bar {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary);
}

.timeline-point {
  position: absolute;
  top: 25px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  transform: translateX(-50%);
}

.timeline-point-label {
  position: absolute;
  top: 45px;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  color: var(--light-text);
  width: 100px;
}

.timeline-current {
  left: 0%;
}

.timeline-mid {
  left: 50%;
}

.timeline-goal {
  left: 100%;
}

.reflection-prompt {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: var(--secondary);
  border-radius: 8px;
  font-style: italic;
  text-align: center;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--light-text);
  text-align: center;
}


.contacts-section {
  padding: 8rem 0 5rem;
}

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

.contact-info {
  background-color: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 16px var(--shadow);
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
  width: 40px;
  text-align: center;
}

.contact-text a {
  color: var(--text);
}

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

.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  margin-bottom: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-note {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
}


.legal-section {
  padding: 8rem 0 5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
}

.legal-updated {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}


.thanks-section {
  padding: 8rem 0;
  text-align: center;
}

.thanks-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.thanks-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


.footer {
  background-color: var(--dark);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-link a:hover {
  color: white;
  text-decoration: none;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--accent);
  margin-right: 1rem;
  width: 20px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0;
}

.cookie-settings-btn:hover {
  color: white;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  margin-bottom: 1.5rem;
}

.cookie-banner-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-banner-text {
  font-size: 0.95rem;
  color: var(--text);
}

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

.cookie-btn {
  flex: 1;
  min-width: 150px;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept-all {
  background-color: var(--accent);
  color: white;
  border: none;
}

.cookie-btn-accept-all:hover {
  background-color: var(--dark);
}

.cookie-btn-reject-all {
  background-color: transparent;
  color: var(--text);
  border: 1px solid #e0e0e0;
}

.cookie-btn-reject-all:hover {
  background-color: #f8f8f8;
}

.cookie-btn-settings {
  background-color: var(--primary);
  color: var(--text);
  border: 1px solid #e0e0e0;
}

.cookie-btn-settings:hover {
  background-color: var(--secondary);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--light-text);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--text);
}

.cookie-modal-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

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

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

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

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

input:focus + .slider {
  box-shadow: 0 0 1px var(--accent);
}

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

.cookie-category-description {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.cookie-examples {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-top: 0.5rem;
}

.cookie-examples span {
  display: inline-block;
  margin-right: 0.5rem;
  background-color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}

.cookie-modal-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    max-width: 90%;
    padding: 1.5rem;
  }
}


.form-control.is-invalid {
  border-color: var(--error);
}

.invalid-feedback {
  display: none;
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid + .invalid-feedback {
  display: block;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-body {
  margin-bottom: 1.5rem;
}

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


.iti { 
  width: 100%;
}