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

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #202124;
  line-height: 1.6;
  background-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #4285F4;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.section {
  padding: 80px 0;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #202124;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #4285F4, #34A853);
  margin: 20px auto;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #70757a;
  max-width: 700px;
  margin: 0 auto 50px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #2a75f3, #2e9549);
}

.header {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #202124;
}
.header .logo img {
  height: 40px;
  margin-right: 10px;
}
.header .nav ul {
  display: flex;
}
.header .nav ul li {
  margin-left: 30px;
}
.header .nav ul li a {
  color: #202124;
  font-weight: 500;
  position: relative;
}
.header .nav ul li a:hover {
  color: #4285F4;
}
.header .nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #4285F4;
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}
.header .nav ul li a:hover::after {
  width: 100%;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #202124;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
  padding: 150px 0 80px;
  margin-top: 70px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #202124;
}
.hero-content .subtitle {
  font-size: 1.3rem;
  color: #70757a;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-image {
  flex: 1;
}
.hero-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero .price-tag {
  position: relative;
  display: inline-block;
  background-color: #EA4335;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero .price-tag .original-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 10px;
  font-size: 1rem;
  vertical-align: middle;
}
.hero .price-tag .discounted-price {
  font-size: 1.5rem;
}
.hero .discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #d62516;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.hero-features .feature {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero-features .feature i {
  color: #34A853;
  margin-right: 10px;
  font-size: 1.2rem;
}
.hero-features .feature span {
  font-weight: 500;
}

.about-section {
  background-color: white;
}
.about-section .about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.about-section .about-text {
  flex: 1;
}
.about-section .about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.about-section .about-image {
  flex: 1;
}
.about-section .about-image img {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.about-section .about-list {
  margin-top: 30px;
}
.about-section .about-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.about-section .about-list li i {
  margin-right: 15px;
  color: #4285F4;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.course-section {
  background-color: #f8f9fa;
}
.course-section .course-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.course-section .module {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.course-section .module:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.course-section .module-header {
  background: linear-gradient(to right, #4285F4, #34A853);
  color: white;
  padding: 20px;
}
.course-section .module-header h3 {
  margin-bottom: 5px;
}
.course-section .module-content {
  padding: 20px;
}
.course-section .module-content li {
  padding: 10px 0;
  border-bottom: 1px solid #e8eaed;
}
.course-section .module-content li:last-child {
  border-bottom: none;
}

.results-section {
  background-color: #f8f9fa;
}
.results-section .testimonials {
  margin-bottom: 60px;
}
.results-section .testimonial {
  margin-bottom: 40px;
}
.results-section .testimonial:last-child {
  margin-bottom: 0;
}
.results-section .testimonial-content {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .results-section .testimonial-content {
    flex-direction: column;
  }
}
.results-section .testimonial-text {
  flex: 1;
  padding: 40px;
  position: relative;
}
.results-section .testimonial-text i {
  color: rgba(66, 133, 244, 0.1);
  font-size: 3rem;
  position: absolute;
  top: 20px;
  left: 20px;
}
.results-section .testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.results-section .testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: #202124;
}
.results-section .testimonial-author span {
  color: #70757a;
  font-size: 0.9rem;
}
.results-section .testimonial-image {
  flex: 1;
}
.results-section .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .results-section .testimonial-image {
    width: 100%;
    max-height: 300px;
  }
}
.results-section .conversations {
  margin-top: 60px;
}
.results-section .conversations h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #202124;
}
.results-section .conversation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}
.results-section .conversation-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.results-section .conversation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.results-section .conversation-item:hover .conversation-overlay {
  opacity: 1;
}
.results-section .conversation-img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.results-section .conversation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 133, 244, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.results-section .conversation-overlay i {
  color: white;
  font-size: 2rem;
}
.results-section .results-cta {
  text-align: center;
  margin-top: 60px;
}
.results-section .results-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.benefits-section {
  background-color: white;
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefits-section .benefit {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.benefits-section .benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.benefits-section .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}
.benefits-section .benefit-icon i {
  color: white;
  font-size: 2rem;
}
.benefits-section .benefit h3 {
  margin-bottom: 15px;
  color: #202124;
}
.benefits-section .benefit p {
  color: #70757a;
}

.pricing-section {
  background-color: #f8f9fa;
}
.pricing-section .pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.pricing-section .pricing-header {
  padding: 30px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  text-align: center;
}
.pricing-section .pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.pricing-section .price {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 20px 0;
}
.pricing-section .price .original-price {
  display: block;
  text-decoration: line-through;
  font-size: 1.5rem;
  opacity: 0.7;
  margin-bottom: -10px;
  color: white;
}
.pricing-section .price span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}
.pricing-section .pricing-features {
  padding: 30px;
}
.pricing-section .pricing-features li {
  padding: 15px 0;
  border-bottom: 1px solid #e8eaed;
  display: flex;
  align-items: center;
}
.pricing-section .pricing-features li:last-child {
  border-bottom: none;
}
.pricing-section .pricing-features li i {
  color: #34A853;
  margin-right: 15px;
  font-size: 1.2rem;
}
.pricing-section .pricing-cta {
  padding: 0 30px 40px;
  text-align: center;
}
.pricing-section .payment-methods {
  margin-top: 20px;
}
.pricing-section .payment-methods i {
  font-size: 2rem;
  margin: 0 5px;
  color: #70757a;
}

.faq-section {
  background-color: white;
}
.faq-section .faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-question {
  width: 100%;
  padding: 20px;
  background-color: #f8f9fa;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.faq-section .faq-question:hover {
  background-color: #f2f4f6;
}
.faq-section .faq-question i {
  transition: all 0.3s ease;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}
.faq-section .faq-answer p {
  padding: 0 20px 20px;
}
.faq-section .faq-item.active .faq-question {
  background-color: #4285F4;
  color: white;
}
.faq-section .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 300px;
}

.footer {
  background-color: #202124;
  color: white;
  padding: 60px 0 0;
}
.footer .logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer .logo img {
  height: 40px;
  margin-right: 10px;
}
.footer .logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer .footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer .social-links {
  display: flex;
  gap: 15px;
}
.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  background-color: #4285F4;
  transform: translateY(-3px);
}
.footer .footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}
.footer .footer-links ul li {
  margin-bottom: 10px;
}
.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer .footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}
.footer .footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}
.footer .footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.footer .footer-contact ul li i {
  margin-right: 15px;
  color: #4285F4;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer .footer-bottom p {
  opacity: 0.7;
  margin-bottom: 10px;
}
.footer .legal-links {
  display: flex;
  gap: 20px;
}
.footer .legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer .legal-links a:hover {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  margin-top: 5vh;
  -webkit-animation: zoomIn 0.3s;
          animation: zoomIn 0.3s;
}
.modal .close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}
.modal .close-modal:hover {
  color: #EA4335;
  transform: scale(1.1);
}
.modal .caption {
  margin: 15px auto;
  display: block;
  width: 80%;
  text-align: center;
  color: white;
  font-size: 1.1rem;
}

.promo-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.promo-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.promo-popup .popup-content h3 {
  color: #4285F4;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.promo-popup .popup-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.promo-popup .popup-content p strong {
  color: #EA4335;
  font-size: 1.3rem;
}
.promo-popup .popup-content ul {
  text-align: left;
  margin: 20px 0;
}
.promo-popup .popup-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.promo-popup .popup-content ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #34A853;
}
.promo-popup .popup-content .small-text {
  font-size: 0.8rem;
  color: #70757a;
  margin-top: 20px;
}
.promo-popup .close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #70757a;
  cursor: pointer;
  transition: all 0.3s ease;
}
.promo-popup .close-popup:hover {
  color: #EA4335;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 50px;
  }
  .hero-features {
    justify-content: center;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content .about-list li {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transform: translateY(-150%);
    transition: all 0.3s ease;
  }
  .header .nav ul {
    flex-direction: column;
  }
  .header .nav ul li {
    margin: 0;
    text-align: center;
    padding: 15px 0;
  }
  .header .nav ul li a {
    font-size: 1.1rem;
  }
  .header .nav.active {
    transform: translateY(0);
  }
  .header .mobile-menu-btn {
    display: block;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pricing-header h3 {
    font-size: 1.5rem;
  }
  .price {
    font-size: 2.5rem !important;
  }
}
/*# sourceMappingURL=style.css.map */