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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #2c3e50;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
  text-decoration: none;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.header__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
}
.header__nav-link {
  color: #6c757d;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}
.header__nav-link:hover {
  color: #2c3e50;
}
.header__nav-link--active {
  color: #2c3e50;
  border-bottom-color: #3498db;
}

.footer {
  background-color: #2c3e50;
  color: #f8f9fa;
  padding: 5rem 0;
}
.footer__section-title {
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer__link {
  color: #f8f9fa;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__link:hover {
  color: #3498db;
}
.footer__social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
}
.footer__social-link {
  font-size: 1.5rem;
  color: #ffffff;
}
.footer__social-link:hover {
  color: #3498db;
  transform: scale(1.1);
}
.footer__divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}
.footer__copyright {
  color: #adb5bd;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease-in-out;
  border: none;
}

.hero__cta-primary {
  background-color: #3498db;
  color: #ffffff;
}
.hero__cta-primary:hover {
  background-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero__cta-secondary {
  background-color: transparent;
  color: #343a40;
  border: 2px solid #f8f9fa;
}
.hero__cta-secondary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card__title {
  font-family: "Montserrat", sans-serif;
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card__text {
  color: #343a40;
  line-height: 1.6;
}
.service-card--featured {
  background-color: #2c3e50;
  color: #ffffff;
}
.service-card--featured .service-card__title {
  color: #ffffff;
}
.service-card--featured .service-card__text {
  color: #f8f9fa;
}

.hero {
  background-color: #f8f9fa;
}
.hero__title {
  font-size: 3.5rem;
}
.hero__description {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 1rem auto 2.5rem;
}

.services {
  background-color: #ffffff;
}

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