:root {
  --primary: #000000;
  --secondary: #FFFFFF;
  --accent: #00B4D8;
  --accent-secondary: #FF8500;
  --background: #F8F9FA;
  --text: #212529;
  --text-secondary: #6C757D;
  --success: #28A745;
  --danger: #DC3545;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#rejectAllCookies, #configureCookies {
  color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

a:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

button, .btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--secondary);
}

.btn-primary:hover {
  background-color: #0099b8;
  border-color: #0099b8;
}

.btn-secondary {
  background-color: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background-color: #e67700;
  border-color: #e67700;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

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

.section {
  padding: 5rem 0;
}

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

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


header {
  background-color: var(--secondary);
  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: 1rem;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li {
  margin-left: 2rem;
}

.nav-desktop a {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--secondary);
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

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

.nav-mobile ul {
  list-style: none;
  padding: 1rem;
}

.nav-mobile li {
  margin-bottom: 1rem;
}

.nav-mobile a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
}

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


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

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.hero-feature i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.how-it-works {
  background-color: var(--secondary);
  padding: 5rem 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30%;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

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


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

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--secondary);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit i {
  font-size: 2rem;
  color: var(--accent);
  min-width: 50px;
}

.benefit-content {
  flex: 1;
}

.benefit h3 {
  margin-bottom: 0.75rem;
}


.services {
  background-color: var(--secondary);
  padding: 5rem 0;
}

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

.service-card {
  background-color: var(--background);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: var(--primary);
  color: var(--secondary);
}

.service-icon i {
  font-size: 3rem;
}

.service-content {
  padding: 1.5rem;
}

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


.timeline {
  padding: 5rem 0;
  position: relative;
  background-color: var(--background);
}

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

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--accent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 2rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
  margin-left: auto;
}

.timeline-content {
  background-color: var(--secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 100%;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid var(--secondary);
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: auto;
  left: -15px;
  border-left: none;
  border-right: 15px solid var(--secondary);
}

.timeline-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent);
  color: var(--secondary);
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}


.faq {
  background-color: var(--secondary);
  padding: 5rem 0;
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--background);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

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

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

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


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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--secondary);
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
}

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

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

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

.form-button {
  display: block;
  width: 100%;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
}

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


.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 1rem;
  z-index: 1050;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

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

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

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

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

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

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

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

.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: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

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

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

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

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

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


footer {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 3rem 0;
  margin-top: auto;
}

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

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

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

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

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

.footer-links a {
  color: #ccc;
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--accent);
}

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



.about-hero {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 5rem 0;
  position: relative;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

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

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}


.blog-hero {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 5rem 0;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--secondary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

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


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

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

.article-date {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.article-image {
  margin-bottom: 2rem;
}

.article-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

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

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

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

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

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}


.contact-hero {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 5rem 0;
  position: relative;
}

.contact-info {
  margin-top: 3rem;
}

.contact-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

.contact-map {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
}

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


.thanks-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 3rem 1rem;
}

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


.optimization-hero {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 5rem 0;
  position: relative;
}

.savings-section {
  padding: 5rem 0;
}

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

.savings-card {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.use-cases {
  background-color: var(--background);
  padding: 5rem 0;
}

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

.use-case {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.use-case-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.use-case-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.roi-section {
  padding: 5rem 0;
}

.roi-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

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

.roi-image {
  flex: 1;
  min-width: 300px;
}

.roi-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.legal-requirements {
  background-color: var(--background);
  padding: 5rem 0;
}

.requirements-list {
  margin-top: 2rem;
}

.requirements-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.requirements-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}


.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.legal-header {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-date {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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


@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .timeline-container::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-right: 0;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 80px;
  }
  
  .timeline-dot {
    left: 40px;
  }
  
  .timeline-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section, .section-sm {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .steps {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-feature {
    min-width: 140px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 60px;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
}

.iti {
  width: 100%;
}