/* Main styles for financial audit website */
:root {
  --primary-bg: #120d31;
  --secondary-bg: #2b2156;
  --accent-color: #fd6e50;
  --secondary-accent: #fdc27a;
  --text-color: #ffffff;
  --text-secondary: #c2c2c2;
  --hero-text-color: #ffffff;
  --hero-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  background-color: var(--primary-bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(253, 110, 80, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--accent-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
}

/* Error messages */
.error-messages {
  background-color: rgba(255, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.error-message {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 13, 49, 0.8), rgba(43, 33, 86, 0.8));
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(253, 110, 80, 0.2), transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content.text-center {
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--hero-text-color);
  text-shadow: var(--hero-text-shadow);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--hero-text-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: var(--hero-text-shadow);
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  color: var(--text-color);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 110, 80, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(253, 110, 80, 0.6);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

.centered-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background-color: var(--secondary-bg);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-image-container {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 300px;
}

.services-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-image:hover {
  transform: scale(1.03);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.8), rgba(18, 13, 49, 0.8));
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* How We Work Section */
.process {
  background-color: var(--secondary-bg);
}

.process-image-container {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 300px;
}

.process-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.process-image:hover {
  transform: scale(1.03);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(253, 110, 80, 0.5);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.5), rgba(18, 13, 49, 0.5));
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
  box-shadow: 0 0 15px rgba(253, 110, 80, 0.3);
}

.benefit-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-description {
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary-bg);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.8), rgba(18, 13, 49, 0.8));
  border-radius: 10px;
  padding: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(253, 110, 80, 0.2);
  font-family: serif;
}

.testimonial-text {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-weight: bold;
  font-size: 1rem;
}

.client-position {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(253, 110, 80, 0.1), transparent 60%);
  z-index: 1;
}

.form-container {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.9), rgba(18, 13, 49, 0.9));
  border-radius: 10px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(253, 110, 80, 0.3);
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  background-color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #000000;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  text-align: left;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border: none;
  border-radius: 30px;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 110, 80, 0.4);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(253, 110, 80, 0.6);
}

/* Contact Information and Map */
.contact-info-section {
  background-color: var(--secondary-bg);
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-container.enhanced {
  gap: 50px;
}

.contact-info {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.8), rgba(18, 13, 49, 0.8));
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
  margin-right: 20px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 35px;
  height: 35px;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.info-content p {
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.contact-map {
  flex: 1;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.enhanced-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.enhanced-map:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  background-color: rgba(18, 13, 49, 0.9);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.company-description {
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(43, 33, 86, 0.95);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: bottom 0.5s ease;
  border-top: 1px solid rgba(253, 110, 80, 0.5);
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-text p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  border: none;
  color: var(--text-color);
}

.cookie-accept:hover {
  transform: translateY(-3px);
}

/* Thank You Page */
.thank-you-container {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.thank-you-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(253, 110, 80, 0.1), transparent 70%);
  z-index: 0;
}

.thank-you-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.8), rgba(18, 13, 49, 0.8));
  border-radius: 15px;
  padding: 50px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--text-color);
  box-shadow: 0 10px 30px rgba(253, 110, 80, 0.5);
}

.thank-you-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(253, 110, 80, 0.3);
}

.thank-you-message {
  font-size: 1.3rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.thank-you-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  color: var(--text-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(253, 110, 80, 0.4);
}

.thank-you-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(253, 110, 80, 0.6);
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(43, 33, 86, 0.8), rgba(18, 13, 49, 0.8));
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  text-align: center;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.legal-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-text p {
  margin-bottom: 15px;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.legal-list li {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-steps::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
  
  .thank-you-content {
    padding: 40px 20px;
  }
  
  .thank-you-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--primary-bg);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }

  nav ul.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .process-step {
    width: 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .info-card {
    flex-direction: column;
  }
  
  .info-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .thank-you-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .thank-you-title {
    font-size: 2.5rem;
  }
  
  .thank-you-message {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .form-container {
    padding: 20px;
  }

  .legal-container {
    padding: 20px;
  }
  
  .thank-you-title {
    font-size: 2rem;
  }
  
  .thank-you-content {
    padding: 30px 15px;
  }
} 