html {
  scrollbar-gutter: stable;
}

svg {
  pointer-events: none;
}

body {
  background-color: #f3f4f6;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

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

a {
  text-decoration: none;
}

h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

h2 {
  text-align: center;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format("woff2");
  unicode-range: U460 -52F, U1C80 -1C8A, U20B4, U2DE0 -2DFF, UA640-A69F, UFE2E-FE2F;
}
.buyButton {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
  display: block;
}
.buyButton:hover {
  background-color: #1d4ed8;
}

.courses {
  margin: 2rem auto;
  width: 1100px;
  max-width: 100%;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(508px, 100%), 1fr));
  padding: 1rem;
}
.courses .course {
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-radius: 2.5rem;
  background: white;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.courses .course:hover {
  transform: translateY(-10px);
}
.courses .course img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
}
.courses .course h2 {
  padding: 0 2rem;
}
.courses .course .courseBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}
.courses .course .courseBottom .author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.courses .course .courseBottom .author .authorName {
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.courses .course .courseBottom .author .authorTitle {
  font-size: 1.1rem;
  color: #4b5563;
  display: block;
}

footer {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 50px 20px;
  text-align: center;
  margin-top: 80px;
}

#paymentLogos {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #paymentLogos {
    gap: 1rem;
  }
}
#paymentLogos .mcId {
  width: 45px;
  background: white;
  padding: 0.5rem;
}
#paymentLogos .visaSecure {
  width: 45px;
}
#paymentLogos .allsecure {
  width: 111px;
  margin-right: 1rem;
}
#paymentLogos .unicredit {
  width: 200px;
}
#paymentLogos .visa {
  width: 65px;
}
#paymentLogos .mc {
  width: 48px;
  background: white;
  padding: 0.5rem;
}
#paymentLogos .maestro {
  width: 43px;
  background: white;
  padding: 0.3rem;
}

header {
  background: white;
  padding: 1rem;
}

#footerLinks {
  margin-bottom: 4rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #footerLinks {
    gap: 1rem;
    flex-direction: column;
  }
  #footerLinks span {
    display: none;
  }
}
#footerLinks a {
  color: white;
  text-decoration: underline;
}

#staticContent {
  max-width: 1024px;
  margin: 1rem auto;
  padding: 1rem;
  min-height: 54vh;
}
#staticContent h1 {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #staticContent h1 {
    font-size: 2rem;
    margin-top: 0;
  }
}
#staticContent h1, #staticContent h2 {
  color: #111;
}
#staticContent h2 {
  margin-top: 30px;
}
#staticContent p {
  margin: 10px 0;
}
#staticContent ul {
  margin: 10px 0 10px 20px;
}
#staticContent li {
  margin-bottom: 6px;
}
#staticContent a {
  color: #1f2937;
  font-weight: bold;
}

#courseInfo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#courseInfo span {
  font-size: 1.2rem;
}

#paymentForm {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  gap: 1rem;
}
#paymentForm h3 {
  text-align: center;
  margin-bottom: 3rem;
}
#paymentForm > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#paymentForm > div input {
  border-radius: 7px;
  padding: 0.5rem;
  border: 1px solid #1f2937;
  outline: none;
}
#paymentForm > div input[type=submit] {
  width: max-content;
  background: #1f2937;
  cursor: pointer;
  color: white;
  padding: 0.7rem 2rem;
  transition: 0.3s ease all;
}
#paymentForm > div input[type=submit]:hover {
  background: gray;
}
#paymentForm #paymentFormErrors {
  display: flex;
  flex-direction: column;
}
#paymentForm #paymentFormErrors span {
  color: red;
}

.processPayment {
  background: white;
}
.processPayment iframe {
  width: 100%;
}

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