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

body {
  font-family: "Source Sans Pro", sans-serif;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
}

header {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 172px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 30px;
}

.menu {
  display: flex;
  gap: 50px;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
}

.hero {
  height: 1093px;
  background: url(img/first_img.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero-content {
  margin-bottom: 100px;
}

.hero h1 {
  font-size: 120px;
  font-weight: 700;
  line-height: 151px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #c271ff;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  border-radius: 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  filter: drop-shadow(0px 2px 20px rgba(0, 0, 0, 0.5));
}

.pros-section {
  margin-top: 50px;
}

.pros-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 80px;
}

.learn {
  color: #c271ff;
}

.pros-grid {
  display: flex;
  gap: 120px;
  justify-content: center;
}

.pro-card {
  text-align: center;
  width: 150px;
}

.pro-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.pro-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.pro-card p {
  font-size: 16px;
  font-style: italic;
  line-height: 24px;
  opacity: 0.8;
}

.testimonial {
  height: 392px;
  background: #c271ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
}

.testimonial-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.testimonial blockquote {
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 22px;
  font-style: italic;
}

.tutorials {
  padding: 100px 0;
  text-align: center;
}

.tutorials h2 {
  font-size: 32px;
  font-weight: 300;
  color: #071629;
  margin-bottom: 80px;
}

.learn {
  color: #c271ff;
}

.tutorials-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tutorial-card {
  width: 255px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.popular {
  color: #c271ff;
}

.Free {
  color: #c271ff;
}

.tutorial-preview {
  height: 154px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tutorial-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid #c271ff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
}

.tutorial-info {
  padding: 20px 15px;
  text-align: left;
}

.tutorial-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #071629;
  margin-bottom: 10px;
}

.tutorial-info p {
  font-size: 14px;
  color: rgba(7, 22, 41, 0.5);
  line-height: 24px;
  margin-bottom: 20px;
}

.tutorial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #c271ff;
}

.duration {
  font-size: 14px;
  font-weight: 600;
  color: #c271ff;
  margin: 0;
  padding-left: 85px;
}

.rating {
  display: flex;
  gap: 5px;
}

.star {
  width: 15px;
  height: 15px;
}
.rating-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}
.tutorial-meta .duration {
  display: none;
}

.membership {
  background: #071629;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.membership h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 80px;
}

.membership-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 60px;
}

.membership-item {
  width: 200px;
  text-align: center;
}

.membership-icon {
  width: 44px;
  height: 35px;
  margin: 0 auto 30px;
}

.membership-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.membership-item p {
  font-size: 14px;
  line-height: 26px;
}

.faq {
    background-color: white;
    padding: 80px 0;
}

.faq h2 {
    font-weight: 300;
    font-size: 60px;
    line-height: 75px;
    text-align: center;
    color: #071629;
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    padding: 0 15px;
    margin-bottom: 60px;
}

.faq-item h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #071629;
    margin-bottom: 20px;
}

.faq-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(7, 22, 41, 0.501584);
}

footer {
  background: #071629;
  height: 249px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
}

.footer-content {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-logo {
  height: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a img {
  width: 30px;
  height: 30px;
}

.copyright {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  opacity: 0.35;
}
