/* =====================
   Global Styles
===================== */
:root {
  
  --wine-red: #8B1A36;
  --deep-purple: #4A2545;
  --gold: #D4AF37;
  
  
  --burgundy: #722F37;
  --cream: #F5F0E1;
  --slate-blue: #355C7D;
  
  
  --vibrant-orange: #F67E7D;
  --teal: #2D7D8F;
  --bright-yellow: #FFD700;
  
  
  --off-white: #FAFAFA;
  --light-gray: #F0F0F0;
  --charcoal: #333333;
  
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--deep-purple);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: var(--space-md);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--wine-red);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

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

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

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-colored {
  position: relative;
}

.section-colored::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  z-index: -1;
}


.color-block {
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}

.color-block--red {
  background-color: var(--wine-red);
  color: white;
}

.color-block--purple {
  background-color: var(--deep-purple);
  color: white;
}

.color-block--gold {
  background-color: var(--gold);
  color: var(--charcoal);
}

.color-block--teal {
  background-color: var(--teal);
  color: white;
}

.color-block--orange {
  background-color: var(--vibrant-orange);
  color: var(--charcoal);
}

.color-block h2, 
.color-block h3, 
.color-block h4 {
  color: inherit;
}

.color-block h2::after {
  background-color: white;
}

.color-block--gold h2::after,
.color-block--orange h2::after {
  background-color: var(--deep-purple);
}

/* =====================
   Header Styles
===================== */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-md);
}

.header__logo {
  display: block;
  width: 200px;
}

.header__logo img {
  width: 100%;
}

.header__nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  margin-left: var(--space-lg);
}

.nav__link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--wine-red);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link:focus::after,
.nav__link.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* =====================
   Sidebar CTA Styles
===================== */
.sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 300px;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  z-index: 900;
  border-left: 4px solid var(--wine-red);
}

.sidebar__heading {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--wine-red);
}

.sidebar__contact {
  margin-bottom: var(--space-lg);
}

.sidebar__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.sidebar__contact-icon {
  margin-right: var(--space-sm);
  color: var(--wine-red);
}

.sidebar__cta {
  margin-top: var(--space-lg);
}

.sidebar__button {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--wine-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sidebar__button:hover,
.sidebar__button:focus {
  background-color: var(--burgundy);
}

.sidebar-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-md);
  z-index: 900;
}

.sidebar-mobile__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-mobile__contact {
  flex: 1;
}

.sidebar-mobile__button {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--wine-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  margin-left: var(--space-md);
}

/* =====================
   Hero Section Styles
===================== */
.hero {
  position: relative;
  padding: var(--space-xxl) 0;
  background-color: var(--deep-purple);
  overflow: hidden;
}

.hero__container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  flex: 1;
  color: white;
  padding-right: var(--space-xl);
}

.hero__title {
  font-size: 3rem;
  color: white;
  margin-bottom: var(--space-lg);
}

.hero__text {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
}

.hero__button {
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__button--primary {
  background-color: var(--gold);
  color: var(--deep-purple);
}

.hero__button--primary:hover,
.hero__button--primary:focus {
  background-color: #c09c30;
}

.hero__button--secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.hero__button--secondary:hover,
.hero__button--secondary:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero__image {
  flex: 1;
  position: relative;
}

.hero__image img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.color-block-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.color-block-grid__item {
  padding: var(--space-lg);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.color-block-grid__item:nth-child(1) {
  grid-column: span 8;
  grid-row: span 1;
  background-color: var(--wine-red);
}

.color-block-grid__item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
  background-color: var(--deep-purple);
}

.color-block-grid__item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 1;
  background-color: var(--teal);
}

.color-block-grid__item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 1;
  background-color: var(--gold);
  color: var(--deep-purple);
}

.color-block-grid__item:nth-child(5) {
  grid-column: span 7;
  grid-row: span 1;
  background-color: var(--burgundy);
}

.color-block-grid__item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 1;
  background-color: var(--vibrant-orange);
  color: var(--deep-purple);
}

/* =====================
   Content Section Styles
===================== */
.content-section {
  padding: var(--space-xl) 0;
}

.content-section__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-section__title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.content-section__title::after {
  left: 50%;
  transform: translateX(-50%);
}

.content-section__subtitle {
  font-size: 1.25rem;
  color: var(--burgundy);
  max-width: 700px;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.module-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.module-card__header {
  padding: var(--space-md);
}

.module-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--wine-red);
}

.module-card__subtitle {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.7;
}

.module-card__body {
  padding: 0 var(--space-md) var(--space-md);
}

.module-card__description {
  margin-bottom: var(--space-md);
}

.module-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.module-card__detail {
  background-color: var(--light-gray);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--charcoal);
}

.program-timeline {
  margin: var(--space-xl) 0;
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background-color: var(--light-gray);
  z-index: -1;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item__icon {
  width: 50px;
  height: 50px;
  background-color: var(--wine-red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-right: var(--space-lg);
  flex-shrink: 0;
}

.timeline-item__content {
  flex: 1;
  padding: var(--space-md);
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--wine-red);
}

.timeline-item__description {
  margin-bottom: var(--space-sm);
}

.timeline-item__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.timeline-item__detail {
  background-color: var(--light-gray);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--charcoal);
}

.methodology-section {
  background-color: var(--cream);
  padding: var(--space-xl) 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.methodology-item {
  text-align: center;
  padding: var(--space-md);
}

.methodology-item__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background-color: var(--wine-red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
}

.methodology-item__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--wine-red);
}

.pricing-section {
  padding: var(--space-xl) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card__header {
  padding: var(--space-md);
  background-color: var(--wine-red);
  color: white;
  text-align: center;
}

.pricing-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: white;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-card__description {
  font-size: 0.875rem;
}

.pricing-card__body {
  padding: var(--space-md);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

.pricing-card__feature {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.pricing-card__feature i {
  color: var(--wine-red);
  margin-right: var(--space-sm);
}

.pricing-card__button {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--wine-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus {
  background-color: var(--burgundy);
}

.benefits-section {
  background-color: var(--cream);
  padding: var(--space-xl) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.benefit-item {
  background-color: white;
  border-radius: 4px;
  padding: var(--space-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-item__icon {
  font-size: 2.5rem;
  color: var(--wine-red);
  margin-bottom: var(--space-md);
}

.benefit-item__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--deep-purple);
}

.faq-section {
  padding: var(--space-xl) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
  padding: var(--space-md);
  background-color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question-text {
  margin: 0;
  color: var(--deep-purple);
}

.faq-item__icon {
  color: var(--wine-red);
  transition: transform 0.3s ease;
}

.faq-item__answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-item__answer {
  padding: var(--space-md);
  max-height: 500px;
}

.media-section {
  padding: var(--space-xl) 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-item:hover img {
  transform: scale(1.05);
}

/* =====================
   Contact Form Styles
===================== */
.contact-section {
  padding: var(--space-xl) 0;
  background-color: var(--cream);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: var(--space-xl);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  color: var(--deep-purple);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--wine-red);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-checkbox input {
  margin-right: var(--space-sm);
  margin-top: 5px;
}

.form-submit {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--wine-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover,
.form-submit:focus {
  background-color: var(--burgundy);
}


.iti {
  width: 100%;
}

/* =====================
   Modal Styles
===================== */
.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: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal__content {
  width: 90%;
  max-width: 500px;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__header {
  padding: var(--space-md);
  background-color: var(--wine-red);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin: 0;
  color: white;
}

.modal__close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal__body {
  padding: var(--space-lg);
}

.modal__footer {
  padding: var(--space-md);
  background-color: var(--light-gray);
  display: flex;
  justify-content: flex-end;
}

.modal__button {
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--wine-red);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal__button:hover,
.modal__button:focus {
  background-color: var(--burgundy);
}

/* =====================
   Cookie Consent Styles
===================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--charcoal);
  color: white;
  padding: var(--space-lg);
  z-index: 1900;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-consent__text {
  flex: 1;
  min-width: 300px;
  margin: 0;
}

.cookie-consent__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-consent__button {
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-consent__button--accept {
  background-color: var(--wine-red);
  color: white;
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus {
  background-color: var(--burgundy);
}

.cookie-consent__button--customize,
.cookie-consent__button--refuse {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.cookie-consent__button--customize:hover,
.cookie-consent__button--customize:focus,
.cookie-consent__button--refuse:hover,
.cookie-consent__button--refuse:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  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: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings__content {
  width: 90%;
  max-width: 600px;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings.active .cookie-settings__content {
  transform: translateY(0);
}

.cookie-settings__header {
  padding: var(--space-md);
  background-color: var(--charcoal);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

.cookie-settings__title {
  margin: 0;
  color: white;
}

.cookie-settings__close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-settings__body {
  padding: var(--space-lg);
}

.cookie-category {
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: var(--space-md);
}

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

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cookie-category__title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--deep-purple);
}

.cookie-category__toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-category__checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

.cookie-category__checkbox:checked + .cookie-category__slider {
  background-color: var(--wine-red);
}

.cookie-category__checkbox:checked + .cookie-category__slider:before {
  transform: translateX(30px);
}

.cookie-category__description {
  margin-bottom: var(--space-md);
}

.cookie-category__details {
  font-size: 0.875rem;
  color: var(--charcoal);
  opacity: 0.7;
}

.cookie-settings__footer {
  padding: var(--space-md);
  background-color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: sticky;
  bottom: 0;
}

.cookie-settings__button {
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings__button--save {
  background-color: var(--wine-red);
  color: white;
}

.cookie-settings__button--save:hover,
.cookie-settings__button--save:focus {
  background-color: var(--burgundy);
}

.cookie-settings__button--accept-all {
  background-color: var(--deep-purple);
  color: white;
}

.cookie-settings__button--accept-all:hover,
.cookie-settings__button--accept-all:focus {
  background-color: #3a1d36;
}

.cookie-settings__button--refuse-all {
  background-color: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.cookie-settings__button--refuse-all:hover,
.cookie-settings__button--refuse-all:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

.cookie-control {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.cookie-control:hover {
  background-color: var(--wine-red);
}

/* =====================
   Footer Styles
===================== */
.footer {
  background-color: var(--deep-purple);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.footer__logo {
  margin-bottom: var(--space-md);
  max-width: 200px;
}

.footer__about {
  margin-bottom: var(--space-lg);
}

.footer__heading {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: white;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.footer__contact-icon {
  margin-right: var(--space-sm);
  color: var(--gold);
  margin-top: 5px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: var(--space-sm);
}

.footer__nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  color: var(--gold);
  text-decoration: none;
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  margin: 0;
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__legal-link {
  color: white;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal-link:hover,
.footer__legal-link:focus {
  color: var(--gold);
  text-decoration: none;
}

/* =====================
   Responsive Styles
===================== */
@media (max-width: 1200px) {
  .sidebar {
    width: 250px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__container {
    flex-direction: column;
  }
  
  .hero__content {
    padding-right: 0;
    margin-bottom: var(--space-xl);
  }
  
  .sidebar {
    display: none;
  }
  
  .sidebar-mobile {
    display: block;
  }
  
  .color-block-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .color-block-grid__item:nth-child(1) {
    grid-column: span 6;
  }
  
  .color-block-grid__item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
  }
  
  .color-block-grid__item:nth-child(3) {
    grid-column: span 3;
  }
  
  .color-block-grid__item:nth-child(4) {
    grid-column: span 2;
  }
  
  .color-block-grid__item:nth-child(5) {
    grid-column: span 4;
  }
  
  .color-block-grid__item:nth-child(6) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }
  
  .header__nav {
    display: none;
  }
  
  .header__nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: var(--space-md) 0;
  }
  
  .header__nav.active .nav__list {
    flex-direction: column;
    width: 100%;
  }
  
  .header__nav.active .nav__item {
    margin: 0;
    width: 100%;
  }
  
  .header__nav.active .nav__link {
    display: block;
    padding: var(--space-md);
    width: 100%;
    text-align: center;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero__buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero__button {
    width: 100%;
  }
  
  .color-block-grid {
    grid-template-columns: 1fr;
  }
  
  .color-block-grid__item {
    grid-column: span 1 !important;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-item__icon {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .cookie-consent__container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent__buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__text {
    font-size: 1rem;
  }
  
  .content-section__title {
    font-size: 2rem;
  }
  
  .methodology-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-settings__footer {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cookie-settings__button {
    width: 100%;
  }
}