@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-green: #1aac56;
  --light-bg: #f4f5f9;
  --text-dark: #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.2;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: 0.3s;
}

a:hover {
  color: var(--primary-green);
}

.btn,
a.btn {
  display: inline-block;
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  appearance: none;
  border: none;
}
.btn:hover,
a.btn:hover {
  opacity: 0.8;
}

input {
  outline: none;
}

.card {
  padding: 30px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #ffffff;
}

header {
  padding: 32px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
}
header img {
  opacity: 0.5;
  margin-right: 6px;
}
header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header ul li a {
  display: block;
  padding: 0 0 0 30px;
}

/* Hero Section */
.hero {
  padding: 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero .container img {
  width: 40%;
}
.hero .container .content {
  width: 60%;
}
.hero .container h1 {
  margin-bottom: 20px;
}
.hero .container p {
  margin: 20px 0 30px 0;
  max-width: 500px;
}
.hero .container .btn {
  font-weight: 400;
  font-size: 20px;
}

/* Challenges Section */
.section-challenges {
  padding: 40px 0;
}

.card-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: flex-start;
}
.card-list li {
  padding: 20px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #ffffff;
}
.card-list .icon {
  background: #e0f7e5;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.card-list .icon img {
  width: 100%;
}

/* Results Section */
.section-results {
  color: var(--white);
  padding: 40px 0;
}
.section-results h3 {
  margin: 0 0 20px 0;
}
.section-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 22px;
}
.section-results ul li {
  padding: 8px 0 8px 34px;
  background: url("../icons/check.svg") center left no-repeat;
}

/* Process Section */
.section-process {
  padding: 40px 0;
}
.section-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.section-process .step-card {
  padding: 30px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #ffffff;
}
.section-process .step-card .icon {
  background: #e0f7e5;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.section-process .step-card .icon img {
  width: 100%;
}
.section-process .step-card h3 {
  margin: 0 0 10px 0;
}
.section-process .step-card p {
  margin-bottom: 0;
}

/* Bonus box */
.section-bonus-box {
  margin: 0 auto;
  max-width: 1100px;
  box-sizing: border-box;
  background: #ddf2e6;
  border-radius: 15px;
}
.section-bonus-box .container {
  background: url(../images/book.jpg) 100% top no-repeat;
  background-size: auto 100%;
  padding: 30px 350px 30px 80px;
  box-sizing: border-box;
  max-width: 900px;
}
.section-bonus-box .container p {
  font-size: 20px;
}

/* Author Section */
.section-course {
  padding: 40px 0;
}
.section-course .container {
  width: fit-content;
}
.section-course h2 {
  text-align: center;
}
.section-course .card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-course .author-img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 30px;
}
.section-course ul {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}
.section-course .author {
  display: flex;
  align-items: center;
}
.section-course .pricing {
  border-left: 1px solid #ddd;
  padding-left: 30px;
  margin-left: 30px;
  text-align: center;
}
.section-course .pricing .price-tag {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}
.section-course .pricing .btn {
  padding: 25px 60px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 40px 0;
}
footer .container {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .social a {
  margin-left: 20px;
  white-space: nowrap;
}
footer .social a svg {
  vertical-align: middle;
}

/* Order Page */
.create-order .container {
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #f9f9f9;
  border-radius: 10px;
  border: 3px dashed #0d72b5;
  padding: 40px;
}
.create-order h1 {
  margin-top: 0;
}
.create-order .errors {
  font-weight: 700;
  color: #f00;
  margin-bottom: 10px;
}
.create-order .result {
  color: #11c011;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.create-order .order-items {
  margin-bottom: 20px;
  background: #ffffff;
  width: 100%;
  border-spacing: 0;
}
.create-order .order-items th {
  background: #111111;
  color: #ffffff;
}
.create-order .order-items th,
.create-order .order-items td {
  padding: 10px;
  text-align: right;
}
.create-order .order-items th:first-child:not(:last-child),
.create-order .order-items td:first-child:not(:last-child) {
  text-align: left;
}
.create-order .order-items tfoot {
  font-weight: 700;
  background: #efefef;
}
.create-order .form-group {
  margin-bottom: 1rem;
}
.create-order .form-group label {
  display: block;
  margin-bottom: -3px;
  color: #333;
  padding: 5px 5px 8px 5px;
  background: #e7e8ea;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.create-order .form-group .form-control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.create-order .form-group .form-control {
  border: 1px solid #e7e8ea;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.create-order .form-group textarea.form-control {
  overflow: hidden;
  overflow-wrap: break-word;
  resize: none;
  height: 158px;
}
.create-order .btn {
  font-size: 18px;
  padding: 16px 40px;
}

/* Responsive */
@media (max-width: 1200px) {
  .section-course .card {
    flex-direction: column;
  }
  .section-course .pricing {
    border-left: none;
    border-top: 1px solid #ddd;
    padding: 30px 0;
    margin: 30px 0 0 0;
    width: 100%;
  }
  .section-course .pricing h3 {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  header .container {
    flex-direction: column;
    padding: 0;
  }
  header .container nav {
    margin-top: 20px;
  }
  header ul {
    flex-wrap: wrap;
  }
  header ul li a {
    padding: 8px 10px;
  }
  .hero {
    padding: 0 0 20px 0;
  }
  .hero .container {
    flex-direction: column-reverse;
  }
  .hero .container .content {
    width: initial;
    font-size: 18px;
  }
  .hero .container img {
    width: 100%;
  }
  .section-results,
.section-process,
.section-bonus-box,
.section-course {
    padding: 20px 0;
  }
  footer {
    padding: 20px 0 40px 0;
  }
  .section-results ul {
    font-size: 18px;
  }
  .challenges-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-list {
    grid-template-columns: 1fr 1fr;
  }
  .section-bonus-box {
    width: fit-content;
  }
  .section-bonus-box .container {
    padding: 320px 30px 30px 30px;
    background-size: 300px auto;
    background-position: calc(50% + 55px) top;
  }
  .section-course .author-img {
    width: 100%;
    height: auto;
    margin-right: 0;
    max-width: 300px;
  }
  .section-course .author {
    flex-direction: column;
  }
  .section-course .pricing .price-tag {
    font-size: 2.5rem;
  }
  .create-order .container {
    padding: 30px 20px;
    margin: 0 10px;
  }
}
@media (max-width: 500px) {
  .card-list {
    grid-template-columns: 1fr;
  }
  footer .container {
    flex-direction: column;
  }
  footer .social a {
    display: inline-block;
    margin: 4px 10px;
  }
}

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