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


:root {
  --primary: #2B5797;
  --secondary: #3DA5D9;
  --accent: #FFA500;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #EEF2F7;
  --border: #E0E0E0;
  --success: #28A745;
  --error: #DC3545;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --rounded-sm: 4px;
  --rounded-md: 8px;
  --rounded-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

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

button, .btn {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: var(--transition);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

section {
  padding: 5rem 0;
}


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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


.header {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

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

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: row;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-btn {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--rounded-sm);
  font-weight: 500;
  transition: var(--transition);
}

.nav-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}


@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    transition: var(--transition);
    padding: 2rem;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}


.hero {
  background-color: var(--bg-secondary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-btn {
  background-color: var(--accent);
  color: var(--text-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.hero-btn:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.hero-btn i {
  transition: var(--transition);
}

.hero-btn:hover i {
  transform: translateX(4px);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}

@media (max-width: 991px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    opacity: 0.2;
    width: 100%;
    border-radius: 0;
  }
  
  .hero-content {
    max-width: 100%;
  }
}


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

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

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
}


.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h3 {
  margin-bottom: 1.5rem;
}

.about-image img {
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
}


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

.service-card {
  background-color: var(--bg-primary);
  border-radius: var(--rounded-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: 1.5rem;
}

.service-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 600;
  gap: 0.5rem;
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}


.stats-section {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0;
}

.stats-section .section-title h2,
.stats-section .section-description {
  color: var(--text-light);
}

.stats-section .section-title h2:after {
  background-color: var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--rounded-md);
  transition: var(--transition);
}

.stat-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}


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

.case-card {
  background-color: var(--bg-primary);
  border-radius: var(--rounded-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-md);
}

.case-image {
  height: 250px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.case-content {
  padding: 1.5rem;
}

.case-category {
  display: inline-block;
  background-color: var(--bg-tertiary);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.case-title {
  margin-bottom: 1rem;
}

.case-description {
  margin-bottom: 1.5rem;
}

.case-results {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: var(--rounded-sm);
  margin-bottom: 1.5rem;
}

.case-results h6 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.case-results ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.case-results li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}


.contact-section {
  background-color: var(--bg-tertiary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background-color: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-md);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--rounded-sm);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(61, 165, 217, 0.25);
}

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

.form-check-input {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-sm);
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

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

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}


.map-container {
  height: 400px;
  border-radius: var(--rounded-md);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

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


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

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.partner-logo {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-item:hover .partner-logo {
  filter: grayscale(0);
  opacity: 1;
}


.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

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

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

.footer-contact-icon {
  color: var(--accent);
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-text a:hover {
  color: var(--accent);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 4rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


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

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

.cookie-text {
  flex: 1;
}

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

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--rounded-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept {
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
}

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

.btn-settings {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-settings:hover {
  background-color: var(--bg-tertiary);
}


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

.cookie-modal-content {
  background-color: var(--bg-primary);
  border-radius: var(--rounded-md);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

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

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

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

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

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

.category-title {
  font-weight: 600;
  margin-bottom: 0;
}

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

.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:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.category-desc {
  font-size: 0.9rem;
  color: #666;
}

.cookie-modal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

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


@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    margin-top: 1rem;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-modal-buttons {
    width: 100%;
  }
}


.before-after-container {
  position: relative;
  margin-bottom: 2rem;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-md);
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  z-index: 1;
  width: 50%;
  overflow: hidden;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--accent);
  transform: translateX(-50%);
  z-index: 2;
  cursor: ew-resize;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle::after {
  content: '⇄';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
}

.before-label,
.after-label {
  position: absolute;
  bottom: 20px;
  padding: 5px 15px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3;
}

.before-label {
  left: 20px;
}

.after-label {
  right: 20px;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-container {
  position: relative;
  background-color: inherit;
  width: 50%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-container.left {
  left: 0;
}

.timeline-container.right {
  left: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container.right::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--bg-primary);
  position: relative;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-sm);
}

.timeline-date {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-container.left::after,
  .timeline-container.right::after {
    left: 21px;
  }
  
  .timeline-container.right {
    left: 0;
  }
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  background-color: var(--bg-primary);
  border-radius: var(--rounded-md);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: block;
}

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

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-title {
  margin-bottom: 0;
}


.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-container {
  max-width: 600px;
  padding: 3rem 2rem;
  background-color: var(--bg-primary);
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-md);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.thanks-title {
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-sm);
  font-weight: 500;
  transition: var(--transition);
}

.back-to-home:hover {
  background-color: var(--secondary);
  color: var(--text-light);
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.policy-content ul li,
.policy-content ol li {
  margin-bottom: 0.5rem;
}

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


.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.iti {
  width: 100%;
}