* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  max-width:1400px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

.subtitle {
  font-size: 1.2rem;
  margin: 1rem 0rem;
}

.icon {
  size: 5rem;
  text-align: center;
}

.highlight {
  color: #facc15;
}

.highlight2 {
  color: #1e3a8a;
  font-weight: bold;
}
.animated-button1 {
  background: linear-gradient(-30deg, #ccaa14 50%, #31d411d7 50%);
  padding: 20px 40px;
  margin: 12px;
  border-radius: 10px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #051857;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.animated-button1::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#fafafa)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #f7f7f7);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#f8f8f8)
  );
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #fdfdfd);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(248, 248, 248, 0)),
    to(#ffffff)
  );
  background: linear-gradient(to right, rgba(9, 43, 8, 0), #f8f8f8);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 8, 0)),
    to(#d92626)
  );
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.979), #85d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

header {
  background-color: #f8f9fa;
  padding: 0.3rem 4rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex-grow: 1;
  font-size: 2rem;
  color: #1e3a8a;
}

.logo img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

nav ul {
  display: flex;
  gap: 20px;
}

.fixed-cta-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0;
  border-radius: 50px;
  background-color: transparent;
  display: none; /* Toggle with JavaScript or manually enable for testing */
}

.fixed-cta-btn a {
  display: inline-block;
  background-color: #1e3a8a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects */
.fixed-cta-btn a:hover {
  background-color: #153075;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fixed-cta-btn {
  position: fixed;
  left:65%;
  bottom: 20px;
  width:100%;
  right:0%;
  z-index: 1000;
  padding: 0;
  border-radius: 50px;
  background-color: transparent;
  display: none; /* Toggle with JavaScript or manually enable for testing */
}
  .fixed-cta-btn a {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Optional animation on load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}



/* Hero section styles */
.hero {
  position: relative;
  background-image: url("/logo.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem 3rem;
  margin: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

/* Overlay using ::before */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(30, 58, 138, 0.9); /* dark blue with opacity */
  z-index: 0;
  border-radius: 20px;
}

/* Ensure content is above the overlay */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.cta-container {
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  position: relative;
}

.free-icon {
  position: absolute;
  top: -50px;
  right:10%;
  z-index: 2;
}
.checkbox-container{
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  gap: 1rem;
}

@media (max-width: 768px) {
.checkbox-container{
  flex-direction: column; 
 
}
.free-icon {
  right:0;
}
}

.form-container {
      background-color: rgba(255, 255, 255, 0.1); /* transparent white */
      padding: 30px;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .form-container h2 {
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }

    .form-container input[type="text"],
    .form-container input[type="email"],
    .form-container input[type="tel"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      outline: none;
      background-color: rgba(255, 255, 255, 0.8);
    }

    .form-container input[type="submit"] {
      width: 100%;
      padding: 10px;
      background-color: #ffffffcc;
      color: #000;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }

    .form-container input[type="submit"]:hover {
      background-color: #fff;
    }
 


.schedule-box {
  background-color: rgba(59, 131, 246, 0.26);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.schedule-details {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.register-btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.register-btn {
  display: inline-block;
  padding: 1rem 1rem;
  margin: 0 0 1rem 0;
  background-color: #facc15;
  color: #1e3a8a;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.register-btn:hover {
  background-color: #e8b500;
}
.price-tag {
  display: inline-block;
  background: #facc15;
  color: #1e3a8a;
  font-weight: bold;
  border-radius: 8px;
  padding: 0.4rem 1rem;
  margin: 0.5rem 0 1rem 0;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.price-tag .cup {
  font-size: 0.9rem;
  color: #555;
  margin-left: 0.5rem;
}
.guarantee {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.hero-image {
  flex: 1;
}
.hero-image-overlay {
  display: flex;
}

.hero-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #fff;
  list-style: none;
}

.hero-menu li {
  background-color: rgb(192, 200, 221);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: background-color 0.3s;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: bold;
  margin: 0.2rem 0.2rem;
}
.hero-menu li:hover {
  background-color: rgb(255, 255, 0);
  scale: 1.05;
  transition: all 0.3s ease;
}

.video-card {
  background-color: #07305fec;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 460px;
  margin: auto;
}

.video-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 7.5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or `contain` depending on your preference */
  border-radius: 10px 10px 0px 0px;
}

.video-stats {
  margin:1rem;
}

.progress-bar {
  background-color: rgb(155, 176, 204);
  border-radius: 10px;
  overflow: hidden;
  height: 20px;
}

.progress {
  background-color: rgb(36, 170, 36);
  height: 100%;
  width: 91.4%;
  text-align: center;
  line-height: 20px;
  color: #fff;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
}

.rating .star {
  color: #facc15;
  font-size: 1rem;
}

.rating span:last-child {
  margin-left: 0.5rem;
  color: #facc15;
}

@media (max-width: 768px) {
  .video-wrapper {

  aspect-ratio: 9 / 14;
  
}
}
/* about section styles */
.about {
  background-color: #fff;
  padding: 2rem 4rem;
  border-radius: 20px;
  margin: 1rem 2rem;
}

.about-cards {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.about-card {
  background-color: rgba(134, 216, 178, 0.58);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(63, 197, 22, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 6px 8px rgba(63, 197, 22, 0.2);
  transform: scale(1.05);
}

/* walk away section styles */
.walk-away {
  background-color: rgb(233, 239, 245);
  padding: 4rem 4rem;
  border-radius: 20px;
  margin: 1rem 2rem;
}

.walk-away ul {
  list-style: none;
  padding: 1rem;
  margin: 1rem 0rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  overflow: hidden;
}

.walk-away ul li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  border-radius: 20px;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}

.walk-away ul li:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.icon {
  font-size: 2.5rem;
}

.sucess-matrix {
  background-color: rgba(20, 72, 155, 0.56);
  padding: 1rem 3rem;
  margin-top: 2rem;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.metrics {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

/* instructor section styles */
.instructor {
  padding: 2rem 4rem;
  margin: 1rem 2rem;
}
.instructor-details {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  overflow:hidden;
}
.instructor-details .instructor-info {
  text-align: justify;
}
.instructor-details img {
  width:30%;
  height:20%;
  margin-right: 1.5rem;
  border-radius: 0px 30%;
}

/* testimonial style */

.testimonials-section {
   background-color: rgb(233, 239, 245);
  padding: 4rem 4rem;
  border-radius: 20px;
  margin: 1rem 2rem;
}
 .testimonials {
 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
  background: linear-gradient(
    135deg,
    rgba(11, 136, 17, 0.8),
    rgba(12, 65, 121, 0.88)
  );
  margin: 1rem;
  padding: 1rem;
  border-radius: 10px;
  color: #fff; /* Optional: better contrast for text */
}

.testimonial cite {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* accordian section styeles */
.faq {
  background-color: rgb(233, 239, 245);
  border-radius: 20px;
  padding: 4rem 4rem;
  margin: 1rem 2rem;
}
.accordion {
  display: grid;
  padding: 1rem;
  margin: 1rem 2rem;
}

.accordion li {
  list-style: none;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}

.accordion li label {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

label::after {
  content: "+";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

input[type="radio"] {
  display: none;
}

.accordion .content {
  max-height: 0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked + label + .content {
  max-height: 100px; /* Adjust as needed */
  padding: 0.5rem;
}

.accordion input[type="radio"]:checked + label::after {
  content: "-";
}

/* who can join section styles */

.who-can-join {
  padding: 4rem 4rem;
  margin: 1rem 2rem;
  border-radius: 20px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.card {
  padding: 1.5rem;
  margin: 0.7rem;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.beginners {
  background-color: #34d399;
}
.intermediate {
  background-color: #60a5fa;
}
.professionals {
  background-color: #a78bfa;
}
.side-hustlers {
  background-color: #f97316;
}
.career-changers {
  background-color: #ef4444;
}
.lifelong-learners {
  background-color: #10b981;
}

/* Animations */
.card {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3) {
  animation-delay: 0.3s;
}
.card:nth-child(4) {
  animation-delay: 0.4s;
}
.card:nth-child(5) {
  animation-delay: 0.5s;
}
.card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer section styles */
footer {
  background-color: #fff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 4rem;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 250px;
  flex: 1 1 220px;
}

.footer-logo img {
  max-width: 130px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-contact,
.footer-price,
.footer-legal {
  flex: 1 1 200px;
}

.footer-contact h4,
.footer-price h4,
.footer-legal h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #1e3a8a;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal ul li {
  margin-bottom: 0.4rem;
}

.footer-legal ul li a,
.footer-contact a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal ul li a:hover,
.footer-contact a:hover {
  color: #0b6623;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #eaeaea;
  font-size: 0.9rem;
}

/* ✅ Responsive styles for mobile & tablets */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .footer-conten p {
    font-size:2rem;
  }
  .footer-logo,
  .footer-contact,
  .footer-price,
  .footer-legal {
    flex: 1 1 100%;
    margin-top: 0.5rem;
    max-width: 100%;
  }

  .footer-logo img {
    margin: 0 auto 0.5rem;
  }

  .footer-logo p,
  .footer-contact p,
  .footer-price p {
    margin: 0.3rem 0;
  }
}


@media (max-width: 1024px) {
  /* Tablet */
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .icon {
    font-size: 2rem;
  }

  .hero {
    background-image: url("/logo.jpeg");
    flex-direction: column;
    padding: 1.5rem;
  }

  .hero-content,
  .hero-image {
    flex: none;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .video-card {
    margin-top: 1.5rem;
  }

  .about-cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .walk-away {
    margin-top: 2rem;
    flex-direction: column;
  }
  .instructor {
    padding: 1rem;
  }
  .instructor-details {
    flex-direction: column;
    align-items: center;
  }
  .instructor-details img {
    width: 400px;
    height: 400px;
  }
  .testimonials-section {
    padding: 1rem;
    margin: 1rem;
  }
  .testimonials {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }
  .testimonials .testimonial {
    padding: 0.7rem;
  }
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile */
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  p {
    font-size: 0.7rem;
  }
  .subtitle {
    font-size: 1rem;
    margin: 0.5rem;
  }
  .icon {
    font-size: 1.5rem;
  }
  header {
    padding: 0.5rem 2rem;
  }
  .hero-image-overlay {
    display: flex;
  }
  .hero {
    position: relative;
    background-image: url("/logo.jpeg");
    background-size: contain;
    color: #fff;
    border-radius: 20px;
    display: flex;
    margin: 1rem 0.5rem;
    align-items: center;
    text-align: center;
  }

  /* Overlay using ::before */
  .hero::before {
    position: absolute;
    background-color: rgba(30, 58, 138, 0.9); /* dark blue with opacity */
    border-radius: 20px;
  }
  .cta-container {
    flex-direction: column-reverse;
    align-items: center;
    padding: 1em 0;
  }

  .schedule-details {
    display: grid;
    grid-template-columns: 1fr ;
    margin-bottom: 0.5rem;
  }

  .register-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .guarantee {
    font-size: 0.8rem;
  }
  .video-card {
    padding: 0.5rem;
  }

  .video-placeholder {
    padding: 1.5rem;
  }

  .play-btn {
    width: 40px;
    height: 40px;
  }

  .play-btn::before {
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .rating .star {
    font-size: 0.9rem;
  }

  .about {
    padding: 1.5rem 1rem;
    margin: 0.5rem;
  }
  .about-cards {
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0;
  }
  .about-card {
    padding: 0.8rem;
    margin: 0.5rem 0.3rem;
  }

  .walk-away {
    padding: 2rem 1rem;
    margin: 0.5rem;
  }
  .walk-away ul {
    flex-direction: column;
    margin: 1rem 0;
  }
  .walk-away ul li {
    text-align: center;
    flex-direction: column;
    padding: 0.8rem;
  }

  .sucess-matrix {
    padding: 1rem;
    margin: 0.5rem;
    text-align: center;
  }

  .instructor {
    padding: 2rem 1rem;
    margin: 0.5rem;
  }

  .instructor-details {
    flex-direction: column-reverse;
    align-items: center;
  }

  .instructor-details img {
    width: 360px;
    height: 500px;
  }

  .testimonials-section {
    padding: 2rem 1rem;
    margin: 0.5rem;
  }
  .testimonials {
    grid-template-columns: 1fr;
    padding: 1rem 0rem;
  }
  .testimonials .testimonial {
    padding: 0.7rem;
    margin: 0.2rem;
  }

  .faq {
    padding: 2rem 1rem;
    margin: 0.5rem;
  }
  .faq .accordion {
    margin: 0.5rem;
    padding: 1rem;
  }
  .faq .accordion li {
    padding: 0.5rem;
  }

  .who-can-join {
    padding: 2rem 1rem;
    margin: 0.5rem;
  }

  .cards-container {
    padding: 0;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .card {
    padding: 0.7rem;
    margin: 0.2rem;
   
  }


}

@media (min-width: 1920px) {
  /* TV */

  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2rem;
  }
  p {
    font-size: 1.2rem;
  }
  .subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  .icon {
    font-size: 6rem;
  }
  header {
    padding: 1rem 6rem;
  }

  .hero {
    max-width: 1600px;
  }

  .register-btn {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
  }

  .guarantee {
    font-size: 1.1rem;
  }

  .video-placeholder {
    padding: 3rem;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn::before {
    border-left: 20px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .rating .star {
    font-size: 1.2rem;
  }

  .who-can-join {
    max-width: 1600px;
  }

  .intro {
    font-size: 1.3rem;
  }

  .card {
    padding: 2rem;
  }
}
