@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);
}

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);
}
a.btn:hover {
  opacity: 0.8;
}

.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: 10px;
}
header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header ul li {
  margin-left: 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;
}

/* 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 {
  margin-bottom: 15px;
  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(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-author {
  padding: 40px 0;
}
.section-author .container {
  max-width: 600px;
}
.section-author h2 {
  text-align: center;
}
.section-author .card {
  display: flex;
}
.section-author .author-img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 30px;
}
.section-author ul {
  list-style: none;
  padding: 0;
}

/* Pricing Section */
.section-pricing {
  padding: 40px 0;
  text-align: center;
}
.section-pricing .container {
  max-width: 600px;
}
.section-pricing h2 {
  margin: 0;
}
.section-pricing .price-tag {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 0 20px 0;
}

/* Footer */
footer {
  padding: 40px 0;
}
footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  header .container {
    flex-direction: column;
  }
  header .container nav {
    margin-top: 20px;
  }
  .hero {
    padding: 0 0 20px 0;
  }
  .hero .container {
    flex-direction: column-reverse;
  }
  .hero .container .content {
    width: initial;
  }
  .hero .container img {
    width: 100%;
  }
  .section-results,
.section-process,
.section-bonus-box,
.section-author,
.section-pricing,
footer {
    padding: 20px 0;
  }
  .challenges-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-list {
    grid-template-columns: 1fr 1fr;
  }
  .section-bonus-box .container {
    padding: 250px 30px 30px 30px;
    background-size: 200px auto;
  }
  .section-author .card {
    flex-direction: column;
  }
  .section-pricing .price-tag {
    font-size: 2.5rem;
  }
}

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