
:root {
  --primary: #f8c3d7;
  --secondary: #b5e2fa;
  --tertiary: #d9c5f2;
  --bg-light: #fef9fc;
  --bg-dark: #565264;
  --text-primary: #333333;
  --text-light: #565264;
  --accent: #ff8ba7;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --radius: 12px;
  --container: 1200px;
  --sidebar-width: 300px;
}


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

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

body {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  padding-right: calc(var(--sidebar-width) + 2rem);
  min-height: 100vh;
  padding-bottom: 4rem;
}

.main-content > .section {
  margin-top: 80px;
}


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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-dark);
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn:hover, .btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

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

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-primary);
}

.btn-block {
  display: block;
  width: 100%;
}


.blur-bg {
  position: relative;
}

.blur-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 195, 215, 0.1) 0%, rgba(181, 226, 250, 0.1) 100%);
  filter: blur(20px);
  border-radius: var(--radius);
  z-index: -1;
}

.cloud-shape {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.soft-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.header {
  background-color: var(--bg-light);
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header.headroom--pinned {
  transform: translateY(0);
}

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

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

.logo {
  height: 40px;
}

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

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}


.nav-experiment {
  position: relative;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-item {
  margin: 0;
  position: relative;
}

.nav-link {
  padding: 0.8rem 1.2rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link i {
  font-size: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-link:hover i,
.nav-link.active i {
  opacity: 1;
  transform: scale(1.1);
}

.nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover ~ .nav-indicator,
.nav-link.active ~ .nav-indicator {
  opacity: 0.2;
}


.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(100px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
}

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  margin-top: 2rem;
  box-shadow: var(--shadow);
}


.sidebar {
  position: fixed;
  top: 100px;
  right: 0;
  width: var(--sidebar-width);
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sidebar-text {
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

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


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

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

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(248, 195, 215, 0.2);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.iti {
  width: 100%;
}


.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 3px;
}


.services {
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 195, 215, 0.05) 0%, rgba(181, 226, 250, 0.05) 100%);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}

.process-step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}


.benefits {
  padding: 5rem 0;
  background-color: rgba(217, 197, 242, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.benefit-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}


.problems {
  padding: 5rem 0;
}

.problem-solution {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.problem-solution:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.problem-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.problem-title i {
  color: var(--accent);
}

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


.cases {
  padding: 5rem 0;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.case-card {
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.case-content {
  padding: 1.5rem;
}

.case-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.case-meta i {
  color: var(--accent);
}


.faq {
  padding: 5rem 0;
  background-color: rgba(181, 226, 250, 0.1);
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}

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


.contact {
  padding: 5rem 0;
}

.contact-info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

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

.map-container {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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


.footer {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer a {
  color: var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

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

.footer-text {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

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

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

.footer-link a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.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;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

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

.footer-legal a:hover {
  color: var(--primary);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

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

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

.cookie-settings {
  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: 10000;
  padding: 2rem;
  display: none;
}

.cookie-settings-content {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

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

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

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

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

.category-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

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

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

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

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

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

.category-description {
  font-size: 0.9rem;
  color: var(--text-light);
}

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


.thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
}

.thanks-content {
  max-width: 600px;
}

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

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

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


.case-single {
  padding: 8rem 0 5rem;
}

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

.case-date {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-date i {
  color: var(--accent);
}

.case-single-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.case-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.case-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

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

.case-section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}

.case-results {
  background-color: rgba(248, 195, 215, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-item i {
  color: var(--accent);
  font-size: 1.2rem;
}


.policy {
  padding: 8rem 0 5rem;
}

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

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

.policy-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.policy-section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}

.policy-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.8rem;
}


.individual {
  padding: 8rem 0 5rem;
}

.methodology {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.methodology-item {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.methodology-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.methodology-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.packages {
  margin: 4rem 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.package-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}

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

.package-duration {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-duration i {
  color: var(--accent);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.package-feature i {
  color: var(--accent);
  margin-top: 0.3rem;
}


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

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

.modal-content {
  width: 90%;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(248, 195, 215, 0.1) 0%, rgba(181, 226, 250, 0.1) 100%);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-text {
  margin-bottom: 2rem;
}

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

.modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}


@media (max-width: 1200px) {
  .main-content {
    padding-right: 0;
  }

  .sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    margin-bottom: 2rem;
  }

  .process-step {
    width: 30%;
    margin-bottom: 2rem;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-light);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

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

  .nav-link {
    display: block;
    padding: 0.8rem 0;
  }

  .process-step {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

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

  .process-step {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}