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

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f9f9f9;
  color: #444;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section__description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}

.section {
  padding: 3rem 0;
}
.section__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button i {
  font-size: 1.1em;
}
.button:active {
  transform: scale(0.98);
}

.button--primary {
  background-color: #4CAF50;
  color: white;
}
.button--primary:hover {
  background-color: rgb(63.6462151394, 146.5537848606, 66.9960159363);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.button--outline {
  background-color: transparent;
  color: #4CAF50;
  border: 2px solid #4CAF50;
}
.button--outline:hover {
  background-color: #4CAF50;
  color: white;
}

.button--full {
  width: 100%;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background-color: rgb(63.6462151394, 146.5537848606, 66.9960159363);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.button {
  background: #4CAF50;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.button:hover {
  opacity: 0.9;
}
.button {
  display: inline-block;
  text-align: center;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}
.header.scroll-header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4CAF50;
  transition: color 0.3s ease;
  z-index: 200;
}
.nav__logo:hover {
  color: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}
.nav__logo i {
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .nav__logo {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #eee;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 150;
    overflow-y: auto;
  }
}
.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  background-color: white;
}
@media (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nav__list {
    gap: 1rem;
  }
}

.nav__item {
  list-style: none;
}

.nav__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .nav__link {
    font-size: 1.125rem;
    padding: 1rem 0;
  }
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4CAF50;
  transition: width 0.3s ease;
}
.nav__link:hover, .nav__link.active-link {
  color: #4CAF50;
}
.nav__link:hover::after, .nav__link.active-link::after {
  width: 100%;
}

.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  border: 0;
}
.nav__close:hover {
  color: #4CAF50;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .nav__close {
    display: none;
  }
}

.nav__toggle {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  transition: color 0.3s ease;
  background-color: white;
  border: 0;
}
.nav__toggle:hover {
  color: #4CAF50;
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__menu.show-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
  }
}

.hero {
  padding-top: calc(70px + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
}
@media (min-width: 1024px) {
  .hero {
    padding-top: calc(70px + 4rem);
    padding-bottom: 5rem;
  }
}
.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }
}

.hero__title-accent {
  color: #4CAF50;
  display: block;
}
@media (min-width: 1024px) {
  .hero__title-accent {
    display: inline;
  }
}

.hero__description {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .hero__description {
    font-size: 1.25rem;
  }
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .hero__buttons {
    justify-content: flex-start;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .hero__stats {
    gap: 1rem;
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__stat {
    align-items: flex-start;
  }
}

.hero__stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}
@media (min-width: 1024px) {
  .hero__stat-number {
    font-size: 3rem;
  }
}

.hero__stat-text {
  font-size: 0.875rem;
  color: #444;
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .hero__stat-text {
    text-align: left;
    font-size: 1rem;
  }
}

.hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
@media (min-width: 1024px) {
  .hero__image img {
    min-height: 550px;
  }
}
.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(76, 175, 80, 0.2) 0%, transparent 50%);
}

.about {
  background-color: white;
}

.about__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.about__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
@media (min-width: 1024px) {
  .about__image img {
    min-height: 500px;
  }
}

.about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
}

.about__content .section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.about__content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about__description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__credentials {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .about__credentials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.credential:hover {
  transform: translateX(5px);
  background-color: rgba(76, 175, 80, 0.05);
}

.credential__icon {
  font-size: 1.5rem;
  color: #4CAF50;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential__info {
  flex: 1;
}

.credential__title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.credential__text {
  font-size: 0.875rem;
  color: #444;
  margin: 0;
}

.services {
  background-color: white;
}

.services__cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.service-card {
  position: relative;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #4CAF50;
}
.service-card--featured {
  border: 2px solid #4CAF50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
@media (min-width: 1024px) {
  .service-card--featured {
    transform: scale(1.05);
  }
}
.service-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}
@media (min-width: 1024px) {
  .service-card--featured:hover {
    transform: scale(1.08) translateY(-8px);
  }
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF9800;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-card__header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 1rem;
}

.service-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.service-card__currency {
  font-size: 1.25rem;
  color: #444;
  align-self: flex-start;
  padding-top: 0.5rem;
}

.service-card__amount {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
}

.service-card__period {
  font-size: 0.875rem;
  color: #444;
}

.service-card__body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #444;
}
.service-card__feature i {
  color: #4CAF50;
  font-size: 1.1em;
  flex-shrink: 0;
}

.service-card__footer {
  padding-top: 1.5rem;
}

.testimonials {
  background-color: #f9f9f9;
}

.testimonials__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card__rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-card__rating i {
  color: #FFB800;
  font-size: 1rem;
}

.testimonial-card__quote {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4CAF50;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.testimonial-card__result {
  font-size: 0.875rem;
  color: #4CAF50;
  font-weight: 600;
  margin: 0;
}

.contact {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(46, 125, 50, 0.03) 100%);
  position: relative;
}

.contact__container {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact__content .section__header {
  text-align: left;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .contact__content .section__header {
    text-align: center;
  }
}
.contact__content .section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.contact__content .section__title {
  text-align: left;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .contact__content .section__title {
    text-align: center;
    font-size: 2rem;
  }
}
@media (min-width: 1280px) {
  .contact__content .section__title {
    font-size: 3rem;
  }
}
.contact__content .section__description {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .contact__content .section__description {
    text-align: center;
    font-size: 1rem;
  }
}

.contact__info {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact__info {
    grid-template-columns: 1fr;
  }
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}
.contact__info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(76, 175, 80, 0.3);
}
.contact__info-item:hover .contact__info-icon {
  transform: scale(1.1);
  background-color: #4CAF50;
  color: white;
}

.contact__info-icon {
  font-size: 1.5rem;
  color: #4CAF50;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact__info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}

.contact__info-text {
  font-size: 0.9375rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.contact__form-wrapper {
  background-color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  position: relative;
}
@media (max-width: 768px) {
  .contact__form-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 1280px) {
  .contact__form-wrapper {
    padding: 3rem;
  }
}
.contact__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #2E7D32 100%);
  border-radius: 20px 20px 0 0;
}

.contact__form {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact__form {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .contact__form {
    gap: 1.5rem;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .form__group--full {
    grid-column: 1/-1;
  }
}

.form__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}
.form__label .required {
  color: #f44336;
  margin-left: 2px;
}

.form__input,
.form__textarea {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #444;
  background-color: #f9f9f9;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.form__input:hover,
.form__textarea:hover {
  background-color: rgba(76, 175, 80, 0.03);
  border-color: rgba(76, 175, 80, 0.2);
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  background-color: white;
  border-color: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
  transform: translateY(-1px);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #999;
  font-size: 0.9375rem;
}
@supports (-webkit-touch-callout: none) {
  .form__input,
  .form__textarea {
    font-size: 16px !important;
  }
}
.form__input[aria-invalid=true],
.form__textarea[aria-invalid=true] {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}
.form__input[aria-invalid=true]:focus,
.form__textarea[aria-invalid=true]:focus {
  box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1);
}
.form__input.valid,
.form__textarea.valid {
  border-color: #4CAF50;
}
.form__input.valid:focus,
.form__textarea.valid:focus {
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
  max-height: 300px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .form__textarea {
    min-height: 160px;
  }
}
.form__textarea::-webkit-scrollbar {
  width: 8px;
}
.form__textarea::-webkit-scrollbar-track {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 10px;
}
.form__textarea::-webkit-scrollbar-thumb {
  background: rgba(76, 175, 80, 0.3);
  border-radius: 10px;
}
.form__textarea::-webkit-scrollbar-thumb:hover {
  background: rgba(76, 175, 80, 0.5);
}

.form__counter {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
  margin-top: -0.25rem;
}
.form__counter.warning {
  color: #FF9800;
}
.form__counter.error {
  color: #f44336;
}

.form__error {
  font-size: 0.8125rem;
  color: #f44336;
  display: none;
  margin-top: 0.25rem;
  line-height: 1.4;
  animation: slideDown 0.3s ease;
}
.form__error.show {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form__error i {
  font-size: 0.875rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .form__submit {
    grid-column: 1/-1;
  }
}
.form__submit button[type=submit] {
  width: 100%;
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.form__submit button[type=submit] i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.form__submit button[type=submit]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}
.form__submit button[type=submit]:hover:not(:disabled) i {
  transform: translateX(3px);
}
.form__submit button[type=submit]:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.form__submit button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form__submit button[type=submit]:disabled i {
  animation: spin 1s linear infinite;
}
.form__submit button[type=submit]:focus-visible {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  outline-offset: 3px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.form__message {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 1rem;
  animation: slideIn 0.4s ease;
}
@media (min-width: 768px) {
  .form__message {
    grid-column: 1/-1;
  }
}
.form__message.show {
  display: flex;
}
.form__message i {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.form__message p {
  margin: 0;
  line-height: 1.5;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form__message--success {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  border: 2px solid #4caf50;
}
.form__message--success i {
  color: #4caf50;
}

.form__message--error {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
  border: 2px solid #f44336;
}
.form__message--error i {
  color: #f44336;
}

.form__loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  z-index: 10;
  align-items: center;
  justify-content: center;
}
.form__loading.active {
  display: flex;
}
.form__loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(76, 175, 80, 0.2);
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 768px) {
  .contact__form {
    grid-template-columns: 1fr !important;
  }
  .form__group {
    margin-bottom: 0.5rem;
  }
  .form__input,
  .form__textarea {
    font-size: 16px !important;
  }
  .form__submit button[type=submit] {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .contact__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
  .contact__form-wrapper {
    padding: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .contact__container {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
  .contact__content .section__title {
    font-size: 3.25rem;
  }
  .contact__info-item {
    padding: 1.5rem;
  }
  .contact__form-wrapper {
    padding: 3.5rem;
  }
  .form__input,
  .form__textarea {
    padding: 1.125rem 1.5rem;
    font-size: 1.0625rem;
  }
}
@media print {
  .contact__form-wrapper {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .form__submit {
    display: none;
  }
}
@media (prefers-contrast: high) {
  .form__input,
  .form__textarea {
    border: 2px solid #222;
  }
  .form__input:focus,
  .form__textarea:focus {
    border-color: #4CAF50;
    border-width: 3px;
  }
  .form__label {
    font-weight: 700;
  }
}
@media (prefers-reduced-motion: reduce) {
  .form__input,
  .form__textarea,
  .form__submit button,
  .contact__info-item {
    transition: none;
    animation: none;
  }
  .contact__info-icon {
    transition: none;
  }
}
.footer {
  background-color: #222;
  color: #f9f9f9;
  padding: 4rem 0 1rem;
}

.footer__top {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 1rem;
}
.footer__logo i {
  font-size: 1.3em;
}

.footer__description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 10px;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background-color: #4CAF50;
  transform: translateY(-3px);
}

.footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer__link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.footer__link:hover {
  color: #4CAF50;
  padding-left: 0.5rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer__contact-item i {
  color: #4CAF50;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__legal-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #4CAF50;
}

.footer__separator {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }
  .footer__top {
    gap: 2rem;
    text-align: center;
  }
  .footer__logo {
    justify-content: center;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__links {
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .hero__title br {
    display: none;
  }
  .hero__title-accent {
    display: inline !important;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .hero__buttons .button {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.5rem;
  }
  .hero__stat-number {
    font-size: 1.75rem;
  }
  .hero__stat-text {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
  }
  .service-card__amount {
    font-size: 3rem;
  }
  .section__title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .testimonials__grid,
  .services__cards {
    gap: 1.5rem;
  }
  .container {
    width: 95%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .form__input,
  .form__textarea {
    font-size: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  .hero__title br {
    display: none;
  }
  .hero__title-accent {
    display: inline;
  }
  .section__title {
    font-size: 2.5rem;
  }
  .hero__stats {
    gap: 1.5rem;
  }
  .about__container,
  .contact__container {
    gap: 2rem;
  }
  .service-card {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .services__cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  .service-card:last-child {
    grid-column: 1/-1 !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
  .service-card__amount {
    font-size: 3.5rem !important;
  }
  .hero__container,
  .about__container {
    gap: 3rem;
  }
  .hero__container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero__title {
    font-size: 2.8rem;
    line-height: 1.1;
  }
  .section__title {
    font-size: 2.8rem;
  }
  .hero__buttons {
    gap: 1rem;
    justify-content: center !important;
  }
  .hero__buttons .button {
    min-width: 200px;
  }
  .hero__stats {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  .hero__stat {
    align-items: center;
  }
  .hero__stat-number {
    font-size: 2.2rem;
  }
  .hero__stat-text {
    text-align: center;
  }
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonials__grid {
    gap: 1.5rem;
  }
  .nav__list {
    gap: 1.25rem;
  }
  .footer__top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
  .footer__column:first-child {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer__social {
    justify-content: center;
  }
  .contact__container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .contact__content .section__header {
    text-align: center !important;
  }
  .contact__info {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .container {
    max-width: 1200px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero {
    padding-top: calc(70px + 4rem);
    padding-bottom: 4rem;
  }
  .services__cards {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
  .service-card:last-child {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .service-card {
    padding: 1.75rem;
    min-height: 580px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .service-card__header {
    padding-bottom: 1.25rem !important;
    margin-bottom: 1.25rem !important;
    border-bottom: 1px solid #eee !important;
  }
  .service-card__title {
    margin-bottom: 0.75rem !important;
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
  .service-card__price {
    margin-bottom: 0.5rem !important;
  }
  .service-card__amount {
    font-size: 3.5rem !important;
    line-height: 1 !important;
    margin: 0.25rem 0 !important;
  }
  .service-card__period {
    font-size: 0.9rem !important;
    color: #666 !important;
    margin-bottom: 0.5rem !important;
  }
  .service-card__body {
    flex: 1 !important;
    margin-bottom: 1.5rem !important;
  }
  .service-card__features {
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .service-card__feature {
    padding: 0.5rem 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  .service-card__feature i {
    margin-right: 0.75rem !important;
    font-size: 0.9rem !important;
  }
  .service-card__footer {
    padding-top: 1rem !important;
    margin-top: auto !important;
  }
  .service-card__footer .button {
    width: 100% !important;
    padding: 0.875rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }
  .service-card--featured {
    position: relative !important;
    margin-top: 2rem !important;
  }
  .service-card--featured .service-card__badge {
    display: block !important;
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #FF9800 !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 10 !important;
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2) !important;
  }
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.75rem !important;
  }
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .section__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .hero__container,
  .about__container {
    gap: 3.5rem;
  }
  .about__container {
    grid-template-columns: 1fr 1fr;
  }
  .hero__container {
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    text-align: left;
  }
  .hero__content {
    text-align: left;
  }
  .hero__buttons {
    justify-content: flex-start !important;
  }
  .hero__stats {
    justify-content: flex-start;
    margin: 0;
    max-width: none;
  }
  .hero__stat {
    align-items: flex-start;
  }
  .hero__stat-text {
    text-align: left;
  }
  .hero__stat-number {
    font-size: 2.75rem;
  }
  .contact__container {
    gap: 3rem;
    grid-template-columns: 1fr 1.1fr !important;
    align-items: start;
  }
  .contact__content {
    padding-right: 1rem;
  }
  .contact__content .section__header {
    text-align: left !important;
    margin-bottom: 2.5rem !important;
  }
  .contact__content .section__title {
    text-align: left !important;
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  .contact__content .section__description {
    text-align: left !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
  }
  .contact__info {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    max-width: none;
    margin: 0 0 2.5rem 0 !important;
  }
  .contact__info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding: 1.25rem !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
  }
  .contact__info-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
  }
  .contact__info-icon {
    font-size: 1.5rem !important;
    color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.1) !important;
    padding: 0.75rem !important;
    border-radius: 10px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  .contact__info-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin-bottom: 0.25rem !important;
  }
  .contact__info-text {
    font-size: 0.95rem !important;
    color: #444 !important;
    line-height: 1.5 !important;
  }
  .contact__form-wrapper {
    padding: 2.5rem !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
  }
  .contact__form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
  }
  .form__group {
    margin-bottom: 0 !important;
  }
  .form__group--full {
    grid-column: 1/-1 !important;
  }
  .form__label {
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #222 !important;
    margin-bottom: 0.5rem !important;
  }
  .form__input,
  .form__textarea {
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background: #f9f9f9 !important;
    transition: all 0.3s ease !important;
  }
  .form__input:focus,
  .form__textarea:focus {
    outline: none !important;
    border-color: #4CAF50 !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1) !important;
  }
  .form__input::placeholder,
  .form__textarea::placeholder {
    color: #999 !important;
  }
  .form__textarea {
    min-height: 140px !important;
    resize: vertical !important;
  }
  button[type=submit] {
    grid-column: 1/-1 !important;
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    background: #4CAF50 !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  button[type=submit]:hover {
    background: rgb(63.6462151394, 146.5537848606, 66.9960159363) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3) !important;
  }
  button[type=submit] i {
    margin-right: 0.5rem !important;
  }
  .hero__buttons .button {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 2.5rem !important;
  }
  .footer__column:first-child {
    grid-column: auto;
    text-align: left;
  }
  .footer__social {
    justify-content: flex-start;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1320px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero__title {
    font-size: 4rem;
    line-height: 1.1;
  }
  .section__title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  .section {
    padding: 4.5rem 0;
  }
  .hero {
    padding-top: calc(70px + 5rem);
    padding-bottom: 5rem;
  }
  .hero__container,
  .about__container {
    gap: 5rem;
  }
  .services__cards,
  .testimonials__grid {
    gap: 2.5rem;
  }
  .contact__container {
    gap: 4rem;
  }
  .service-card,
  .testimonial-card {
    padding: 2rem;
  }
  .service-card__amount {
    font-size: 4rem;
  }
  .service-card__features {
    gap: 0.875rem !important;
  }
  .service-card__feature {
    padding: 0.625rem 0 !important;
  }
  .hero__stats {
    gap: 2.5rem;
  }
  .hero__stat-number {
    font-size: 3.25rem;
  }
  .hero__stat-text {
    font-size: 1.05rem;
  }
  .hero__buttons .button {
    padding: 1.125rem 1.875rem;
    font-size: 1.0625rem;
  }
  .contact__form-wrapper {
    padding: 3rem !important;
  }
  .contact__form {
    gap: 1.5rem !important;
  }
  .form__input,
  .form__textarea {
    padding: 1.125rem 1.625rem;
    font-size: 1.0625rem;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .hero__title,
  .section__title {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .button--outline {
    border-width: 1.5px;
  }
  .service-card {
    border-width: 0.5px;
  }
}
@media (min-width: 1440px) and (max-width: 1728px) {
  .container {
    max-width: 1400px;
  }
  .hero__title {
    font-size: 4.25rem;
  }
  .section__title {
    font-size: 3.75rem;
  }
  .services__cards,
  .testimonials__grid {
    gap: 3rem;
  }
  .service-card,
  .testimonial-card {
    padding: 2.25rem;
  }
  .service-card__features {
    gap: 1rem !important;
  }
  .service-card__feature {
    padding: 0.75rem 0 !important;
    font-size: 1rem !important;
  }
  .contact__container {
    gap: 5rem !important;
  }
  .contact__form-wrapper {
    padding: 3.5rem !important;
  }
}
@media (min-width: 1729px) {
  .container {
    max-width: 1600px;
  }
  .hero__title {
    font-size: 4.5rem;
  }
  .section__title {
    font-size: 4rem;
  }
  .section {
    padding: 6rem 0;
  }
  .hero {
    padding-top: calc(70px + 7rem);
    padding-bottom: 7rem;
  }
  .hero__container,
  .about__container {
    gap: 7rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero__container {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero__content {
    text-align: left;
  }
  .hero__buttons {
    justify-content: flex-start !important;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    justify-content: flex-start;
  }
  .hero__stat {
    align-items: flex-start;
  }
  .hero__stat-text {
    text-align: left;
  }
}
@supports (-webkit-touch-callout: none) {
  .hero,
  .about,
  .services,
  .testimonials,
  .contact {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@-moz-document url-prefix() {
  .header {
    scrollbar-width: none;
  }
}
@media (max-width: 390px) {
  .hero__title {
    font-size: 1.6rem;
  }
  .hero__description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .hero__buttons .button {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }
  .hero__stat-number {
    font-size: 1.5rem;
  }
  .hero__stat-text {
    font-size: 0.7rem;
  }
  .service-card {
    padding: 1rem !important;
  }
  .service-card__amount {
    font-size: 2.25rem !important;
  }
  .testimonial-card {
    padding: 1rem !important;
  }
}
body, html {
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

.container {
  overflow-x: hidden;
}

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

@media (hover: none) and (pointer: coarse) {
  .button {
    min-height: 44px;
  }
  .nav__link {
    padding: 0.75rem 0;
  }
  .service-card:hover,
  .testimonial-card:hover,
  .credential:hover {
    transform: none;
  }
}
@media (max-width: 768px) {
  .contact__form {
    grid-template-columns: 1fr !important;
  }
  .form__group {
    margin-bottom: 1rem;
  }
  input,
  textarea {
    font-size: 16px !important;
  }
  .form__input,
  .form__textarea {
    width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .nav__menu {
    background-color: white !important;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15) !important;
  }
  .nav__list {
    background-color: transparent !important;
  }
}
@media (max-width: 768px) {
  .hero__title,
  .section__title,
  .hero__description,
  .section__description,
  .about__description,
  .testimonial-card__quote {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
@media (min-width: 1024px) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  .hero__description,
  .section__description,
  .about__description {
    color: rgba(68, 68, 68, 0.9);
  }
  .service-card,
  .testimonial-card,
  .contact__form-wrapper {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  .button,
  .service-card,
  .testimonial-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media (min-width: 1024px) {
  .button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
  }
  .button--outline:hover {
    transform: translateY(-2px);
  }
  .service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
  .testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
}
.service-card__features {
  margin: 1rem 0 !important;
}

.service-card__feature {
  padding: 0.5rem 0 !important;
  margin-bottom: 0.25rem !important;
  display: flex !important;
  align-items: flex-start !important;
}
.service-card__feature i {
  margin-top: 0.25rem !important;
  margin-right: 0.75rem !important;
  flex-shrink: 0 !important;
}

@media (max-width: 768px) {
  .service-card__feature {
    padding: 0.375rem 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
  .service-card__feature i {
    font-size: 0.85rem !important;
    margin-right: 0.5rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-card__feature {
    padding: 0.5rem 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
}

/*# sourceMappingURL=main.css.map */
