
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');

:root {
  --color-baby-pink: #FFD6E0;
  --color-sky-blue: #C5E8FF;
  --color-lavender: #E0D6FF;
  --color-soft-yellow: #FFF3C5;
  --color-mint-green: #C5FFD6;
  --color-dark-gray: #333333;
  --color-medium-gray: #666666;
  --color-light-gray: #999999;
  --color-deep-purple: #9D81E6;
  --color-coral-pink: #FF8C94;
  --color-white: #FFFFFF;
  --color-off-white: #F9F9F9;
  --color-light-lavender: #F5F0FF;
  --sidebar-width: 20%;
  --content-width: 80%;
  --transition-speed: 0.3s;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  display: flex;
  min-height: 100vh;
  line-height: 1.6;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-deep-purple);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


.sidebar {
  width: var(--sidebar-width);
  position: fixed;
  height: 100vh;
  background: linear-gradient(135deg, var(--color-sky-blue) 0%, var(--color-lavender) 100%);
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: transform var(--transition-speed);
}

.main-content {
  width: var(--content-width);
  margin-left: var(--sidebar-width);
  padding: 2rem;
  background-color: var(--color-white);
  min-height: 100vh;
  transition: margin var(--transition-speed);
}

.sidebar-logo {
  margin-bottom: 2rem;
}

.sidebar-slogan {
  font-size: 0.9rem;
  margin-bottom: 3rem;
  color: var(--color-medium-gray);
  font-weight: 500;
}

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-item {
  margin-bottom: 1rem;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--color-dark-gray);
  border-radius: 0.5rem;
  transition: all 0.3s;
  font-weight: 500;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color-deep-purple);
  transform: translateX(5px);
}

.nav-link:focus {
  outline: 2px solid var(--color-deep-purple);
}


.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  background-color: var(--color-lavender);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu-toggle i {
  font-size: 1.5rem;
  color: var(--color-dark-gray);
}


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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--color-deep-purple), var(--color-coral-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-deep-purple);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-coral-pink);
}




.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-deep-purple), var(--color-coral-pink));
  color: white;
  box-shadow: 0 4px 6px rgba(157, 129, 230, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(157, 129, 230, 0.3);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-deep-purple);
  color: var(--color-deep-purple);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-light-lavender);
}


.card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-baby-pink), var(--color-sky-blue), var(--color-lavender));
}

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

.card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-dark-gray);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-deep-purple);
  display: block;
}


.feature-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.feature-content {
  padding: 1.5rem;
}


.steps-container {
  margin: 3rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateX(5px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-baby-pink), var(--color-lavender));
  color: var(--color-dark-gray);
  font-weight: 700;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}


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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-deep-purple);
  box-shadow: 0 0 0 3px rgba(157, 129, 230, 0.2);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

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


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

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

.modal-content {
  background: linear-gradient(135deg, var(--color-white), var(--color-light-lavender));
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-medium-gray);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--color-dark-gray);
}


.accordion-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 1rem 1.5rem;
  background-color: var(--color-light-lavender);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: var(--color-lavender);
}

.accordion-title {
  font-weight: 500;
  margin: 0;
}

.accordion-icon {
  transition: transform 0.3s;
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  padding: 1rem 1.5rem;
  max-height: 1000px;
}


.hero {
  margin-bottom: 4rem;
  padding: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-baby-pink) 0%, var(--color-lavender) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
  animation: pulse 15s infinite linear;
}

@keyframes pulse {
  0% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(5%, 10%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-dark-gray);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-medium-gray);
}

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


.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.article-meta {
  color: var(--color-medium-gray);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.article-content {
  line-height: 1.8;
}

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

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

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}


.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-link {
  color: var(--color-medium-gray);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-deep-purple);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-lavender);
  text-align: center;
  color: var(--color-medium-gray);
  font-size: 0.9rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-title {
  margin-bottom: 1rem;
}

.cookie-consent-text {
  margin-bottom: 1.5rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-settings {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 51;
  display: none;
}

.cookie-consent-settings.active {
  display: block;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

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

.cookie-category-title {
  font-weight: 500;
  margin: 0;
}

.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-light-gray);
  transition: .4s;
  border-radius: 24px;
}

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

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--color-deep-purple);
}

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

.cookie-category-description {
  color: var(--color-medium-gray);
  font-size: 0.9rem;
}

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

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 49;
  display: none;
}

.cookie-overlay.active {
  display: block;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-deep-purple);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-coral-pink);
  color: white;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.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;
}

.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;
}

.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;
}

.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;
}

.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);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}


.iti {
  width: 100%;
}


@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 250px;
    --content-width: 100%;
  }
  
  body {
    flex-direction: column;
  }
  
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-width);
    z-index: 30;
  }
  
  .sidebar.active {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    width: 100%;
    padding: 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 2rem;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 1.5rem;
    min-height: 250px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
}