body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1c35f3;
  color: #ffffff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus {
  top: 0;
}

header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  position: sticky;
  z-index: 10;
  top: 0;
  background: #ffffff;
}
@media (max-width: 650px) {
  header {
    position: relative;
  }
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 650px) {
  header nav {
    justify-content: center;
  }
}
header nav div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header nav div img {
  height: 50px;
  width: auto;
}
header nav div span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c35f3;
  margin-left: 0.5rem;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 650px) {
  header nav ul {
    display: none;
  }
}
header nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}
header nav ul li a:hover {
  color: #1c35f3;
}
header nav ul li a.active {
  color: #1c35f3;
  font-weight: 700;
  text-decoration: underline;
}

section {
  text-align: center;
  padding: 1.5rem;
}
section:nth-child(odd) {
  background: rgb(242.25, 242.25, 242.25);
}
section:first-of-type {
  background: #1c35f3;
  color: #ffffff;
}

#home {
  padding: 4rem 1.5rem;
}
#home h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fcd90e;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
}
.btn:hover {
  background: rgb(236.456557377, 202.1163934426, 2.943442623);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.services-container .service {
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.services-container .service:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.services-container .service span {
  font-size: 3rem;
  color: #fcd90e;
}
.services-container .service h3 {
  color: #1c35f3;
}
.services-container .service p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  color: rgb(76.5, 76.5, 76.5);
  font-size: 0.9rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.stats-container .stat {
  text-align: center;
}
.stats-container .stat span {
  font-size: 2rem;
  font-weight: 700;
  color: #1c35f3;
  margin: 0;
}
.stats-container .stat p {
  margin: 0.5rem 0 0 0;
  color: rgb(76.5, 76.5, 76.5);
  font-size: 0.9rem;
}

span.email::after {
  content: attr(data-user) "@" attr(data-domain);
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #333333;
  color: #ffffff;
  font-size: 0.875rem;
}
footer a {
  text-decoration: none;
  margin: 0.2rem;
}
footer a svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
footer a svg:hover {
  fill: #1c35f3;
}

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