/* Base Styles */
:root {
  --primary-dark: #0E0B16;
  --secondary-dark: #1A1326;
  --neon-cyan: #00FFFF;
  --neon-magenta: #FF00FF;
  --neon-yellow: #FFFF00;
  --accent-purple: #4717F6;
  --dark-gray: #121212;
  --light-gray: #A7A9AC;
  --white: #FFFFFF;
  --heading-font: 'Cormorant Garamond', serif;
  --body-font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--white);
  background-color: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.8rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
  color: var(--neon-magenta);
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--neon-magenta);
  text-shadow: 0 0 8px var(--neon-magenta);
}

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

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(odd) {
  background-color: var(--secondary-dark);
}

.section:nth-child(even) {
  background-color: var(--primary-dark);
}

/* Grid Lines Background */
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(71, 23, 246, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71, 23, 246, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}

/* Neon Text Effect */
.neon-text {
  text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 15px var(--neon-cyan);
}

.glitch-text {
  position: relative;
  animation: glitch 2s infinite;
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 var(--neon-cyan), -0.05em -0.025em 0 var(--neon-magenta);
  }
  14% {
    text-shadow: 0.05em 0 0 var(--neon-cyan), -0.05em -0.025em 0 var(--neon-magenta);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 var(--neon-cyan), 0.025em 0.025em 0 var(--neon-magenta);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 var(--neon-cyan), 0.025em 0.025em 0 var(--neon-magenta);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 var(--neon-cyan), 0.05em 0 0 var(--neon-magenta);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 var(--neon-cyan), 0.05em 0 0 var(--neon-magenta);
  }
  100% {
    text-shadow: -0.025em 0 0 var(--neon-cyan), -0.025em -0.025em 0 var(--neon-magenta);
  }
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(14, 11, 22, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.8rem 0;
}

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

.logo {
  height: 50px;
  transition: all 0.3s ease;
}

header.scrolled .logo {
  height: 40px;
}

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

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

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(71, 23, 246, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71, 23, 246, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

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

.hero-image {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.hero-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-heading::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -10px;
  left: 0;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
}

.hero-description {
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--neon-cyan), var(--accent-purple));
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Features Section */
.features {
  padding: 5rem 0;
}

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

.section-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  margin: 1rem auto 0;
}

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

.feature-card {
  background-color: rgba(26, 19, 38, 0.8);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(71, 23, 246, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-cyan);
}

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

.feature-description {
  color: var(--light-gray);
}

/* Diagonal Section */
.diagonal-section {
  position: relative;
  padding: 6rem 0;
  margin: 4rem 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-dark);
  transform: skewY(-5deg);
  transform-origin: top left;
  z-index: -1;
}

.diagonal-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.diagonal-image {
  flex: 1;
  position: relative;
}

.diagonal-image img {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(71, 23, 246, 0.5);
}

.diagonal-text {
  flex: 1;
}

/* Technologies Section */
.tech-section {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

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

.tech-card {
  background-color: rgba(26, 19, 38, 0.8);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  border-color: var(--neon-cyan);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--neon-magenta);
}

.tech-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

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

.contact-form {
  background-color: rgba(14, 11, 22, 0.8);
  padding: 2.5rem;
  border-radius: 10px;
  border: 1px solid rgba(71, 23, 246, 0.3);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neon-cyan);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(71, 23, 246, 0.3);
  color: var(--white);
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

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

.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}

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

.submit-btn {
  width: 100%;
}

/* Map */
.map-container {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(71, 23, 246, 0.3);
}

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

/* Footer */
footer {
  background-color: var(--dark-gray);
  padding: 3rem 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-yellow));
}

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

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

.footer-about p {
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-cyan);
}

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

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

.footer-links a {
  color: var(--light-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--light-gray);
}

.footer-contact i {
  margin-right: 0.8rem;
  color: var(--neon-magenta);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(167, 169, 172, 0.2);
  text-align: center;
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(14, 11, 22, 0.95);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(71, 23, 246, 0.3);
}

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

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

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cookie-settings-btn {
  color: var(--neon-cyan);
  background: none;
  border: 1px solid var(--neon-cyan);
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
  background-color: rgba(0, 255, 255, 0.1);
}

.cookie-accept-btn {
  background: linear-gradient(45deg, var(--neon-cyan), var(--accent-purple));
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

.modal-content {
  background-color: var(--primary-dark);
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(71, 23, 246, 0.3);
  box-shadow: 0 0 30px rgba(71, 23, 246, 0.5);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(71, 23, 246, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--neon-cyan);
}

.close-modal {
  background: none;
  border: none;
  color: var(--light-gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--neon-magenta);
}

.modal-body {
  padding: 1.5rem;
}

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

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

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

.category-title {
  font-size: 1.2rem;
  color: var(--neon-magenta);
  margin: 0;
}

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

.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: rgba(167, 169, 172, 0.2);
  transition: .4s;
  border-radius: 34px;
}

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

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

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

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(71, 23, 246, 0.3);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.save-preferences-btn {
  background: linear-gradient(45deg, var(--neon-cyan), var(--accent-purple));
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences-btn:hover {
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: 3rem;
  background-color: rgba(26, 19, 38, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(71, 23, 246, 0.3);
  box-shadow: 0 0 30px rgba(71, 23, 246, 0.5);
}

.thanks-icon {
  font-size: 4rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

.thanks-heading {
  margin-bottom: 1.5rem;
}

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

.back-btn {
  margin-top: 1rem;
}

/* About/History Page */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--neon-cyan), var(--neon-magenta));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

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

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

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--primary-dark);
  border: 3px solid var(--neon-cyan);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::after {
  right: -13px;
}

.timeline-item:nth-child(even)::after {
  left: -13px;
}

.timeline-content {
  padding: 20px;
  background-color: rgba(26, 19, 38, 0.8);
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(71, 23, 246, 0.3);
  box-shadow: 0 0 15px rgba(71, 23, 246, 0.3);
}

.timeline-year {
  font-size: 1.8rem;
  font-family: var(--heading-font);
  color: var(--neon-magenta);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

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

/* Monitoring Page */
.monitoring-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.monitoring-feature {
  background-color: rgba(26, 19, 38, 0.8);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(71, 23, 246, 0.3);
  transition: all 0.3s ease;
}

.monitoring-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(71, 23, 246, 0.4);
}

.monitoring-icon {
  font-size: 2.5rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

.monitoring-feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-magenta);
}

.reports-section {
  padding: 4rem 0;
}

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

.report-card {
  background-color: rgba(26, 19, 38, 0.8);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(71, 23, 246, 0.3);
  transition: all 0.3s ease;
}

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

.report-icon {
  font-size: 2.5rem;
  color: var(--neon-yellow);
  margin-bottom: 1.5rem;
}

.report-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

.report-description {
  color: var(--light-gray);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .feature-grid, 
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .diagonal-content {
    flex-direction: column;
  }
  
  .diagonal-image, 
  .diagonal-text {
    flex: auto;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-container {
    position: relative;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(14, 11, 22, 0.95);
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  
  .feature-grid, 
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item::after {
    left: 18px;
    right: auto;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 18px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}