
:root {
  --primary: #0056b3;
  --secondary: #00a0e3;
  --accent: #ff6b00;
  --bg-color: #f0f4f8;
  --surface: #ffffff;
  --shadow-color: #c8d0e0;
  --highlight-color: #ffffff;
  --text-primary: #2d3748;
  --text-secondary: #5a6877;
  --success: #00b894;
  --warning: #fdcb6e;
  --error: #e74c3c;
  --border-radius: 10px;
  --shadow-distance: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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


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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

.section-title {
  margin-bottom: 2rem;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}


.neumorph {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 
    var(--shadow-distance) var(--shadow-distance) calc(var(--shadow-distance) * 2) rgba(200, 208, 224, 0.5),
    calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * 2) rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.neumorph-inset {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 
    inset var(--shadow-distance) var(--shadow-distance) calc(var(--shadow-distance) * 2) rgba(200, 208, 224, 0.5),
    inset calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * -1) calc(var(--shadow-distance) * 2) rgba(255, 255, 255, 0.8);
}

.neumorph:hover {
  box-shadow: 
    calc(var(--shadow-distance) / 2) calc(var(--shadow-distance) / 2) calc(var(--shadow-distance)) rgba(200, 208, 224, 0.5),
    calc(var(--shadow-distance) / -2) calc(var(--shadow-distance) / -2) calc(var(--shadow-distance)) rgba(255, 255, 255, 0.8);
}


.header {
  background-color: var(--surface);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav {
  display: flex;
  align-items: center;
}

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

.nav-item {
  position: relative;
  margin-left: 2rem;
}

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

.nav-link:hover {
  color: var(--primary);
}

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

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 200px;
  background-color: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 10;
}

.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  list-style: none;
}

.dropdown-link {
  color: var(--text-primary);
  display: block;
  transition: var(--transition);
}

.dropdown-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}


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

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

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.typed-text {
  color: var(--accent);
  font-weight: 700;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 1;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 
    4px 4px 8px rgba(200, 208, 224, 0.5),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--secondary);
  color: white;
  box-shadow: 
    2px 2px 4px rgba(200, 208, 224, 0.5),
    -2px -2px 4px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--primary);
  box-shadow: 
    4px 4px 8px rgba(200, 208, 224, 0.5),
    -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover, .btn-secondary:focus {
  box-shadow: 
    2px 2px 4px rgba(200, 208, 224, 0.5),
    -2px -2px 4px rgba(255, 255, 255, 0.8);
  color: var(--secondary);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}


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

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

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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


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

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

.feature-card {
  padding: 2rem;
}

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

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

.feature-description {
  color: var(--text-secondary);
}


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

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

.portfolio-item {
  overflow: hidden;
  padding: 1.5rem;
}

.portfolio-image {
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.portfolio-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-stat {
  font-weight: 500;
}

.portfolio-stat span {
  color: var(--primary);
}

.portfolio-link {
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.portfolio-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.portfolio-link:hover i {
  transform: translateX(5px);
}


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

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

.benefit-card {
  padding: 2rem;
}

.benefit-title {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.benefit-title i {
  margin-right: 0.75rem;
  color: var(--success);
}


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

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

.module-card {
  padding: 2rem;
}

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

.module-features {
  list-style: none;
  padding-left: 1.5rem;
}

.module-features li {
  position: relative;
  margin-bottom: 0.5rem;
}

.module-features li::before {
  content: '•';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: -1.5rem;
}


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

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

.security-content {
  padding-right: 2rem;
}

.security-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.security-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.security-list li {
  position: relative;
  margin-bottom: 0.75rem;
}

.security-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  position: absolute;
  left: -1.5rem;
}


.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2, .cta-content p {
  color: white;
}

.cta-form {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--bg-color);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  box-shadow: inset 3px 3px 6px var(--shadow-color),
              inset -3px -3px 6px var(--highlight-color);
}

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

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

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

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

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

.form-submit {
  width: 100%;
}


.page-header {
  padding: 3rem 0;
  background-color: var(--surface);
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


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

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.timeline {
  margin-top: 3rem;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--primary);
}

.timeline-item:last-child {
  border-left: 2px solid transparent;
}

.timeline-dot {
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 4px var(--bg-color);
}


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

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

.contact-info {
  padding: 2rem;
}

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

.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary);
}

.contact-info-content h4 {
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  color: var(--text-secondary);
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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


.footer {
  background-color: #2d3748;
  color: white;
  padding: 3rem 0 1.5rem;
}

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

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

.footer-about p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

.footer-link {
  margin-bottom: 0.75rem;
}

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

.footer-link a:hover {
  color: white;
}

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

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
}

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

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: white;
}


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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  background-color: var(--surface);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  overflow-y: auto;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cookie-panel.show {
  transform: translateX(0);
}

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

.cookie-panel-title {
  font-size: 1.5rem;
}

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

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

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.cookie-category-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

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

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

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

.cookie-category-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cookie-panel-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.show {
  display: block;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
}

.backdrop.show {
  display: block;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background-color: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  z-index: 1;
}

.modal.show .modal-content {
  transform: translateY(0);
}

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

.modal-title {
  font-size: 1.5rem;
}

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

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

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


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease-out;
}


@media screen and (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-top: 2rem;
  }

  .security-container,
  .about-container,
  .cta-container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .security-content {
    padding-right: 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface);
    flex-direction: column;
    justify-content: center;
    z-index: 200;
    transform: translateX(-100%);
    transition: var(--transition);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
    z-index: 201;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-item {
    padding: 0.5rem 0;
  }

  .portfolio-grid,
  .features-grid,
  .benefits-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .cookie-panel {
    width: 100%;
    max-width: none;
  }
}


.iti {
  width: 100%;
}


.section {
  padding: 5rem 0;
}

.process-steps {
  counter-reset: step;
  padding: 0;
  margin: 3rem 0;
}

.process-step {
  list-style: none;
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

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

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


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

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

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

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

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

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

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 3rem;
  font-style: italic;
}


.thanks-container {
  text-align: center;
  padding: 5rem 0;
  max-width: 700px;
  margin: 0 auto;
}

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

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-message {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.back-home {
  display: inline-flex;
  align-items: center;
}

.back-home i {
  margin-right: 0.5rem;
}