/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-bg);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.content-container {
  position: relative;
  z-index: 3;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.content-container h1 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.content-container .sub-headline {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.9;
}

.content-container .body-text {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  background: var(--btn-gradient);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button:active {
  transform: translateY(0);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: 'Neon-Regular', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge i {
  font-size: 1.2rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.3);
}

.badge:hover i {
  transform: scale(1.1);
}

/* Animation for fade in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero background animation on hover */
.hero-section:hover .hero-background img {
  transform: scale(1.05);
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .content-container {
    padding: 60px 40px;
    max-width: 70%;
  }

  .content-container h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .content-container .sub-headline {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .content-container .body-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .trust-badges {
    gap: 30px;
  }

  .badge {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .badge i {
    font-size: 1.4rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
  }

  .content-container {
    padding: 25px 15px;
    max-width: 95%;
    margin: 0 auto;
  }

  .content-container h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .content-container .sub-headline {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .content-container .body-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .badge {
    padding: 8px 12px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .badge i {
    font-size: 1.1rem;
  }
}

/* Introductory Section */
.introductory-section {
  padding: 40px 20px;
  background: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.intro-text {
  text-align: center;
  max-width: 100%;
}

.intro-text h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.intro-text .divider {
  width: 80px;
  height: 3px;
  background: var(--primary-green);
  margin: 0 auto 20px;
  border: none;
  border-radius: 2px;
}

.intro-text p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.95;
}

.intro-image {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.desktop-only {
  display: none;
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .introductory-section {
    padding: 60px 40px;
  }

  .intro-container {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .intro-text {
    max-width: 50%;
    text-align: left;
  }

  .intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .intro-text .divider {
    margin: 0 0 20px;
  }

  .intro-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .intro-image {
    max-width: 50%;
  }

  .desktop-only {
    display: block;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .introductory-section {
    padding: 30px 15px;
  }

  .intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .intro-text .divider {
    width: 60px;
    margin-bottom: 15px;
  }

  .intro-text p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

/* Services Section */
.services-section {
  padding: 40px 20px;
  background: var(--secondary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-section h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-category {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.service-thumbnail {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.service-category:hover .service-thumbnail {
  transform: scale(1.03);
}

.service-category h3 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-category p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.services-list {
  list-style: none;
  margin-bottom: 20px;
}

.services-list li {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list li i {
  font-size: 1.2rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.services-list li:hover i {
  transform: scale(1.1);
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  background: var(--btn-gradient);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button:active {
  transform: translateY(0);
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .services-section {
    padding: 60px 40px;
  }

  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .service-category {
    padding: 30px;
  }

  .service-category h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .service-category p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .services-list li {
    font-size: 1rem;
  }

  .services-list li i {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .services-section {
    padding: 30px 15px;
  }

  .services-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .service-category {
    padding: 15px;
  }

  .service-thumbnail {
    height: 150px;
  }

  .service-category h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .service-category p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .services-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .services-list li i {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Trust Section */
.trust-section {
  padding: 40px 20px;
  background: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-section h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.trust-column {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.trust-column:hover .icon-wrapper {
  transform: scale(1.1);
}

.icon-wrapper i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.trust-column h3 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-column p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  opacity: 0.95;
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .trust-section {
    padding: 60px 40px;
  }

  .trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .trust-column {
    padding: 30px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 2rem;
  }

  .trust-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .trust-column p {
    font-size: 1.1rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .trust-section {
    padding: 30px 15px;
  }

  .trust-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .trust-column {
    padding: 15px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .icon-wrapper i {
    font-size: 1.5rem;
  }

  .trust-column h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .trust-column p {
    font-size: 0.95rem;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 40px 20px;
  background: var(--secondary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-section h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--logo-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: fadeIn 0.8s ease-out;
}

.portfolio-section p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.portfolio-carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.portfolio-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-slide {
  flex: 0 0 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide figcaption {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-green);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-button:hover {
  background: var(--logo-green);
  transform: translateY(-50%) scale(1.1);
}

.carousel-button:active {
  transform: translateY(-50%) scale(1);
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  background: var(--btn-gradient);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-button:active {
  transform: translateY(0);
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .portfolio-section {
    padding: 60px 40px;
  }

  .portfolio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .portfolio-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .portfolio-carousel {
    gap: 30px;
  }

  .carousel-slide {
    flex: 0 0 33.33%;
  }

  .carousel-slide img {
    height: 350px;
  }

  .carousel-slide figcaption {
    font-size: 1.1rem;
    padding: 20px;
  }

  .carousel-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .carousel-button.prev {
    left: 20px;
  }

  .carousel-button.next {
    right: 20px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 40px;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .portfolio-section {
    padding: 30px 15px;
  }

  .portfolio-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .portfolio-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-slide figcaption {
    font-size: 0.9rem;
    padding: 10px;
  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .carousel-button.prev {
    left: 5px;
  }

  .carousel-button.next {
    right: 5px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 20px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--logo-green) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta-section h2 {
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeIn 0.8s ease-out;
}

.final-cta-section h2 i {
  font-size: 1.8rem;
  color: var(--accent-yellow);
  transition: transform 0.3s ease;
}

.final-cta-section h2:hover i {
  transform: scale(1.1);
}

.final-cta-section p {
  font-family: 'Neon-Regular', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.large-cta {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Neon-Heavy', sans-serif;
  font-size: 1.1rem;
  color: var(--logo-green);
  background: var(--accent-yellow);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.large-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.large-cta:hover::before {
  left: 100%;
}

.large-cta:hover {
  background: #f0c400; /* Slightly darker yellow */
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.large-cta:active {
  transform: translateY(0);
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Medium screens (768px and up) */
@media (min-width: 768px) {
  .final-cta-section {
    padding: 60px 40px;
  }

  .final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .final-cta-section h2 i {
    font-size: 2rem;
  }

  .final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .large-cta {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .final-cta-section {
    padding: 30px 15px;
  }

  .final-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    gap: 8px;
  }

  .final-cta-section h2 i {
    font-size: 1.5rem;
  }

  .final-cta-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .large-cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

