
:root {
  --color-primary: #3C8D62;
  --color-secondary: #1A4D36;
  --color-accent: #F9B42A;
  --color-text: #333333;
  --color-light-text: #FFFFFF;
  --color-bg-primary: #F8F9F6;
  --color-bg-secondary: #E8F0EB;
  --color-border: #D1E0D8;
  --color-error: #D64045;
  --color-success: #5AAA75;
  --transition-default: all 0.3s ease;
  --shadow-default: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.04);
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-default);
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: var(--transition-default);
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(26, 77, 54, 0.15);
}

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

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

img {
  max-width: 100%;
}

section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: var(--color-primary);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
}


header {
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 50px;
}

.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-nav .nav-item {
  margin-left: 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-link.active {
  color: var(--color-primary);
  background-color: rgba(60, 141, 98, 0.1);
}


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

.hero-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-default);
  position: relative;
  z-index: 2;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background-color: var(--color-bg-secondary);
  transform: skewY(-3deg);
  z-index: 1;
}


.info-section {
  background-color: var(--color-bg-secondary);
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.card {
  border-radius: var(--border-radius-lg);
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-default);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

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

.card-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(3px);
}


.contact-form-section {
  background-color: var(--color-bg-primary);
  position: relative;
}

.form-content {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-default);
  height: 100%;
}

.form-label {
  font-weight: 500;
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(60, 141, 98, 0.25);
}


.iti { 
  width: 100% 
}


.stats-container {
  background-color: var(--color-bg-secondary);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  height: 100%;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
  flex-basis: 50%;
}

.stat-icon {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

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

.chart-container {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}


.main-content {
  background-color: var(--color-bg-primary);
  position: relative;
  padding: 5rem 0;
}

.main-content article {
  margin-bottom: 2rem;
}

.main-content h2 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.main-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.main-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

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


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

.checklist-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-default);
  height: 100%;
}

.checklist-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checklist-icon {
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  margin-bottom: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-item i {
  color: var(--color-success);
  margin-top: 0.3rem;
}


.newsletter-section {
  background-color: var(--color-bg-primary);
  padding: 5rem 0;
}

.newsletter-container {
  background-color: var(--color-primary);
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-default);
}

.newsletter-container h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-form .input-group {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1.25rem;
}

.newsletter-form .form-check-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-check-input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form .form-check-input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}


.modal-content {
  border-radius: var(--border-radius-lg);
  border: none;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-footer {
  border-top: none;
  padding-top: 0;
}

.success-icon {
  color: var(--color-success);
  font-size: 4rem;
  margin-bottom: 1rem;
}


.footer {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
}

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

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

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-default);
}

.footer-links a:hover, .footer-contact a:hover {
  color: white;
  text-decoration: none;
}

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

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

.copyright {
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

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

.cookie-settings-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0;
  text-decoration: none;
}

.cookie-settings-link:hover {
  color: white;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-primary);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 1100;
  display: none;
}

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

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1200;
}

.cookie-modal-content {
  background-color: white;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-default);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

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

.cookie-modal-body {
  padding: 1.5rem;
}

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

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

.cookie-category-header h4 {
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}


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

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

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

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

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

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

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

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.page-header {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: white;
  position: relative;
  z-index: 2;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.header-shape {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background-color: var(--color-bg-primary);
  transform: skewY(-3deg);
  z-index: 1;
}


.faq-content {
  padding: 5rem 0;
}

.faq-nav-container {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 3rem;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.faq-nav li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  color: var(--color-text);
  font-weight: 500;
  transition: var(--transition-default);
}

.faq-nav li a:hover, .faq-nav li a:focus {
  background-color: var(--color-primary);
  color: white;
}

.faq-section {
  margin-bottom: 4rem;
}

.section-icon {
  color: var(--color-primary);
  margin-right: 0.75rem;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}


.practical-nav {
  padding: 2rem 0;
}

.practical-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-default);
  height: 100%;
}

.practical-nav-item i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.practical-nav-item span {
  font-weight: 500;
  color: var(--color-text);
}

.practical-nav-item:hover, .practical-nav-item:focus {
  transform: translateY(-5px);
  box-shadow: var(--shadow-default);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.section-icon {
  color: white;
  font-size: 2.5rem;
}

.practical-guide {
  margin-bottom: 3rem;
}

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

.guide-header img {
  border-radius: var(--border-radius-lg);
  margin-top: 1.5rem;
}

.steps-container {
  margin-bottom: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.security-tips {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
}

.security-tips h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.security-tips i {
  color: var(--color-primary);
}

.tools-section h4 {
  margin-bottom: 1.5rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
}

.tool-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tool-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-card li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.efficiency-tips {
  margin-top: 2rem;
}

.efficiency-tips ul {
  padding-left: 1.5rem;
}

.workflow-section h4 {
  margin-bottom: 1.5rem;
}

.workflow-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.workflow-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.workflow-content h5 {
  margin-bottom: 0.5rem;
}

.workflow-content p:last-child {
  margin-bottom: 0;
}

.tools-highlight {
  margin-top: 2rem;
}

.advanced-tech-section h4 {
  margin-bottom: 1.5rem;
}

.tech-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tech-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tech-content h5 {
  margin-bottom: 0.5rem;
}

.comparison-table {
  margin-top: 2rem;
}

.comparison-table .table th {
  background-color: var(--color-bg-secondary);
  color: var(--color-secondary);
}

.accessibility-section {
  margin-top: 2rem;
}

.accordion-button {
  background-color: var(--color-bg-secondary);
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-border);
}

.accordion-button i {
  margin-right: 0.75rem;
}

.inclusive-tips ul {
  padding-left: 1.5rem;
}

.data-security {
  background-color: var(--color-primary);
  padding: 5rem 0;
  color: white;
}

.security-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}

.security-container h2 {
  color: white;
}

.security-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.security-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

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

.security-chart-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
}


.contact-info-section {
  padding: 5rem 0;
}

.contact-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-default);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.contact-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2rem;
}

.contact-info-cards {
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  margin-bottom: 0;
}

.map-section {
  padding-bottom: 5rem;
}

.map-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-default);
}

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

.quick-link-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-default);
  height: 100%;
  display: flex;
  gap: 1.5rem;
}

.quick-link-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.quick-link-content {
  flex: 1;
}

.quick-link-content h3 {
  margin-bottom: 1rem;
}

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


.thank-you-section {
  padding: 8rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-success);
  margin-bottom: 2rem;
}

.thank-you-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


.legal-content {
  padding: 5rem 0;
}

.legal-toc {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 3rem;
}

.legal-toc ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
  columns: 2;
}

.legal-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.cookie-table-container {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cookie-table th, .cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
  background-color: var(--color-bg-secondary);
  font-weight: 500;
  color: var(--color-secondary);
}


@media (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .contact-details {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .stats-container {
    margin-top: 3rem;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .legal-toc ul {
    columns: 1;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .contact-form-section {
    padding-bottom: 3rem;
  }
  
  .stats-row {
    flex-direction: column;
    margin-bottom: 0;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }
  
  .newsletter-container {
    padding: 2rem;
  }
  
  .quick-link-card {
    flex-direction: column;
  }
  
  .quick-link-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .form-content, .stats-container {
    padding: 1.5rem;
  }
  
  .checklist-card {
    padding: 1.5rem;
  }
  
  .thank-you-section {
    padding: 5rem 0;
  }
  
  .cookie-banner {
    padding: 1rem;
  }
  
  .step {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .workflow-item, .tech-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}