 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
     color: #333;
 }

 .hero {
     background: linear-gradient(135deg, #FF808B 0%, #FF6B7A 100%);
     color: white;
     padding: 80px 20px 0;
     min-height: 600px;
     display: flex;
     align-items: center;
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.2fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-content {
     padding-bottom: 80px;
 }

 .hero-content h1 {
     font-size: 2.8em;
     line-height: 1.2;
     margin-bottom: 25px;
     font-weight: 700;
 }

 .hero-content .subtitle {
     font-size: 1.3em;
     line-height: 1.5;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .hero-content .description {
     font-size: 1em;
     line-height: 1.7;
     margin-bottom: 20px;
     opacity: 0.95;
 }

 .hero-content p {
     font-size: 1.2em;
     line-height: 1.8;
     margin-bottom: 15px;
     opacity: 0.95;
 }

 .hero-content .highlight {
     font-weight: 600;
     font-size: 1.25em;
     background: rgba(255, 255, 255, 0.2);
     padding: 15px 20px;
     border-radius: 8px;
     margin: 25px 0;
 }

 .h-100 {
     height: 100% !important;
 }

 .cta-button {
     display: inline-block;
     background: #365061;
     color: white;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-size: 1.15em;
     font-weight: 700;
     margin-top: 25px;
     transition: all 0.3s;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     cursor: pointer;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
     background: #2a3f4d;
 }

 .cta-button-alt {
     display: inline-block;
     background: white;
     color: #FF808B;
     padding: 18px 45px;
     border-radius: 50px;
     text-decoration: none;
     font-size: 1.15em;
     font-weight: 700;
     margin-top: 25px;
     transition: all 0.3s;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     cursor: pointer;
 }

 .cta-button-alt:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
 }

 .hero-image {
     text-align: center;
     position: relative;
     height: 100%;
     display: flex;
     align-items: end;
     justify-content: center;
 }

 @media (min-width:969px) {
     .hero-image img {
         position: absolute;
         bottom: 0;
         left: 7.5%;
         height: auto;
         width: 85%;
     }
 }



 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .quick-testimonials {
     background: #f8f9fa;
     padding: 60px 20px;
 }

 .quick-testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .quick-testimonial-card {
     background: white;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 .quick-testimonial-text {
     font-size: 1.05em;
     line-height: 1.7;
     color: #495057;
     margin-bottom: 20px;
     font-style: italic;
 }

 .quick-testimonial-author {
     font-size: 0.95em;
     color: #6c757d;
     font-weight: 600;
 }

 .pain-points {
     background: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .pain-points {
         background: white;
         padding: 40px 20px;
     }
 }

 .section-title {
     font-size: 2.5em;
     text-align: center;
     margin-bottom: 20px;
     color: #2c3e50;
     font-weight: 700;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.2em;
     color: #6c757d;
     margin-bottom: 50px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.8;
 }

 .pain-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .pain-card {
     background: #fff5f7;
     padding: 35px;
     border-radius: 12px;
     border-left: 5px solid #FF808B;
 }

 .pain-card h3 {
     font-size: 1.3em;
     margin-bottom: 15px;
     color: #2c3e50;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .pain-card h3 i {
     color: #FF808B;
     font-size: 1.2em;
 }

 .pain-card p {
     color: #495057;
     line-height: 1.7;
 }

 .expectations {
     background: linear-gradient(135deg, #FF808B 0%, #FF6B7A 100%);
     color: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .expectations {
         padding: 40px 20px;
     }
 }

 .expectations h2 {
     font-size: 2.5em;
     text-align: center;
     margin-bottom: 50px;
     color: white;
 }

 .expectations-content {
     max-width: 900px;
     margin: 0 auto;
     background: white;
     color: #2c3e50;
     padding: 50px;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
 }

 .expectations-intro {
     font-size: 1.15em;
     line-height: 1.8;
     margin-bottom: 30px;
     color: #495057;
 }

 .expectations-list {
     background: #f8f9fa;
     padding: 30px;
     border-radius: 8px;
     margin: 30px 0;
 }

 .expectations-list h3 {
     font-size: 1.5em;
     margin-bottom: 20px;
     color: #FF808B;
 }

 .expectation-item {
     display: flex;
     align-items: start;
     gap: 15px;
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: 1px solid #e9ecef;
 }

 .expectation-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .expectation-item i {
     color: #28a745;
     font-size: 1.3em;
     margin-top: 3px;
 }

 .expectation-item p {
     font-size: 1.1em;
     line-height: 1.6;
 }

 .expectations-structure {
     margin-top: 40px;
 }

 .expectations-structure h3 {
     font-size: 1.5em;
     margin-bottom: 20px;
     color: #2c3e50;
 }

 .expectations-structure p {
     font-size: 1.1em;
     line-height: 1.8;
     color: #495057;
     margin-bottom: 15px;
 }

 .target-audience {
     background: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .target-audience {
         padding: 40px 20px;
     }
 }

 .target-content {
     max-width: 900px;
     margin: 0 auto;
 }

 .target-intro {
     font-size: 1.15em;
     line-height: 1.8;
     margin-bottom: 30px;
     color: #495057;
 }

 .target-list {
     background: #f8f9fa;
     padding: 35px;
     border-radius: 12px;
     border-left: 5px solid #365061;
     margin-bottom: 25px;
 }

 .target-list ul {
     list-style: none;
     margin-top: 15px;
 }

 .target-list ul li {
     padding: 10px 0;
     color: #495057;
     font-size: 1.05em;
     line-height: 1.7;
     display: flex;
     align-items: start;
     gap: 12px;
 }

 .target-list ul li:before {
     content: "•";
     color: #365061;
     font-weight: bold;
     font-size: 1.5em;
     line-height: 1;
 }

 .target-final {
     font-size: 1.1em;
     line-height: 1.8;
     color: #495057;
     font-weight: 600;
     margin-top: 25px;
 }

 .testimonials {
     background: #f8f9fa;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .testimonials {
         padding: 40px 20px;
     }
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .testimonial-card {
     background: white;
     padding: 35px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .stars {
     color: #FFC107;
     font-size: 1.3em;
     margin-bottom: 20px;
 }

 .testimonial-text {
     font-size: 1.05em;
     line-height: 1.8;
     color: #495057;
     margin-bottom: 25px;
     font-style: italic;
 }

 .testimonial-author {
     padding-top: 20px;
     border-top: 2px solid #e9ecef;
     font-size: 0.95em;
     color: #6c757d;
     font-weight: 600;
 }

 .program-details {
     background: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .program-details {
         padding: 40px 20px;
     }
 }

 .timeline {
     max-width: 900px;
     margin: 50px auto 0;
 }

 .timeline-item {
     display: grid;
     grid-template-columns: 200px 1fr;
     gap: 40px;
     margin-bottom: 40px;
     padding-bottom: 40px;
     border-bottom: 2px solid #e9ecef;
 }

 .timeline-item:last-child {
     border-bottom: none;
 }

 .timeline-badge {
     background: linear-gradient(135deg, #FF808B, #FF6B7A);
     color: white;
     padding: 20px;
     border-radius: 12px;
     text-align: center;
     font-weight: 700;
     font-size: 1.1em;
 }

 .timeline-content h3 {
     font-size: 1.5em;
     margin-bottom: 15px;
     color: #2c3e50;
 }

 .timeline-content p {
     color: #495057;
     line-height: 1.8;
     margin-bottom: 15px;
 }

 .timeline-content ul {
     list-style: none;
     margin-top: 15px;
 }

 .timeline-content ul li {
     padding: 8px 0;
     color: #495057;
     display: flex;
     align-items: start;
     gap: 10px;
 }

 .timeline-content ul li:before {
     content: "✓";
     color: #28a745;
     font-weight: bold;
     font-size: 1.2em;
 }

 .what-you-get {
     background: #f8f9fa;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .what-you-get {
         padding: 40px 20px;
     }
 }

 .intro-text {
     text-align: center;
     font-size: 1.2em;
     color: #495057;
     margin-bottom: 50px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.8;
 }

 .coverage-list {
     max-width: 900px;
     margin: 0 auto;
 }

 .coverage-item {
     background: white;
     padding: 30px;
     margin-bottom: 20px;
     border-radius: 12px;
     border-left: 5px solid #FF808B;
 }

 .coverage-item h3 {
     font-size: 1.3em;
     margin-bottom: 12px;
     color: #2c3e50;
     font-weight: 600;
 }

 .coverage-item p {
     color: #495057;
     line-height: 1.8;
     font-size: 1.05em;
 }

 .objections {
     background: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .objections {
         padding: 40px 20px;
     }
 }

 .objections-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .objection-card {
     background: #f8f9fa;
     padding: 35px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 }

 .objection-card h3 {
     font-size: 1.3em;
     margin-bottom: 15px;
     color: #FF808B;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .objection-card h3 i {
     font-size: 1.1em;
 }

 .objection-card p {
     color: #495057;
     line-height: 1.8;
     font-size: 1.05em;
 }

 .pricing-section {
     background: linear-gradient(135deg, #FF808B 0%, #FF6B7A 100%);
     color: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .pricing-section {
         padding: 40px 20px;
     }
 }

 .pricing-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .pricing-header h2 {
     font-size: 2.5em;
     margin-bottom: 20px;
     color: white;
 }

 .pricing-header p {
     font-size: 1.2em;
     opacity: 0.95;
     max-width: 700px;
     margin: 0 auto;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .pricing-card {
     background: white;
     color: #2c3e50;
     padding: 45px;
     border-radius: 12px;
     text-align: left;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
 }

 .pricing-label {
     font-size: 0.9em;
     text-transform: uppercase;
     color: #FF808B;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 10px;
 }

 .pricing-amount {
     font-size: 3.2em;
     font-weight: 700;
     color: #FF808B;
     margin-bottom: 5px;
 }

 .pricing-period {
     color: #6c757d;
     margin-bottom: 25px;
     font-size: 1.1em;
 }

 .pricing-description {
     color: #495057;
     line-height: 1.8;
     margin-bottom: 25px;
     padding-bottom: 25px;
     border-bottom: 2px solid #f8f9fa;
     font-size: 1.05em;
 }

 .early-bird-banner {
     background: white;
     color: #2c3e50;
     padding: 25px;
     text-align: center;
     font-weight: 600;
     border-radius: 12px;
     margin-top: 40px;
     font-size: 1.15em;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
 }

 .early-bird-banner i {
     margin-right: 10px;
     font-size: 1.2em;
     color: #FF808B;
 }

 .early-bird-banner strong {
     display: block;
     margin-top: 10px;
     font-size: 1.1em;
     color: #FF808B;
 }

 .guarantee {
     background: #f8f9fa;
     padding: 80px 20px;
     text-align: center;
 }

 @media (max-width:968px) {
     .guarantee {
         padding: 40px 20px;
     }
 }

 .guarantee-box {
     max-width: 800px;
     margin: 0 auto;
     background: white;
     padding: 50px;
     border-radius: 12px;
     border: 3px solid #FF808B;
 }

 .guarantee-icon {
     width: 100px;
     height: 100px;
     margin: 0 auto 25px;
     background: #FF808B;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3em;
     color: white;
 }

 .guarantee-box h2 {
     font-size: 2em;
     margin-bottom: 20px;
     color: #2c3e50;
 }

 .guarantee-box p {
     font-size: 1.15em;
     line-height: 1.8;
     color: #495057;
 }

 .about {
     background: #2c3e50;
     color: white;
     padding: 80px 20px;
 }

 @media (max-width:968px) {
     .about {
         padding: 40px 20px;
     }
 }

 .about-content {
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
 }

 .about-content h2 {
     font-size: 2.5em;
     margin-bottom: 30px;
 }

 .about-content p {
     font-size: 1.15em;
     line-height: 1.8;
     margin-bottom: 20px;
     opacity: 0.95;
 }

 .credentials {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }

 .credential-item {
     background: rgba(255, 255, 255, 0.1);
     padding: 30px;
     border-radius: 12px;
 }

 .credential-item h3 {
     font-size: 2em;
     margin-bottom: 10px;
     color: #FF808B;
 }

 .credential-item p {
     font-size: 1em;
     opacity: 0.9;
 }

 .final-cta {
     background: linear-gradient(135deg, #FF808B 0%, #FF6B7A 100%);
     color: white;
     padding: 80px 20px;
     text-align: center;
 }

 @media (max-width:968px) {
     .final-cta {
         padding: 40px 20px;
     }
 }

 .final-cta h2 {
     font-size: 2.5em;
     margin-bottom: 20px;
 }

 .final-cta p {
     font-size: 1.2em;
     margin-bottom: 15px;
     opacity: 0.95;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.8;
 }

 @media (max-width: 968px) {
     .timeline-content ul li {
         padding-left: 1.5rem;
         position: relative;
         flex-direction: column;
     }

     .timeline-item {
         margin-bottom: 0 !important;
         padding-bottom: 0 !important;
     }

     .timeline-content ul li:before {
         position: absolute;
         left: 0;
         top: 5px;

     }

     .expectations-list {
         background: transparent;
         padding: 0;
         margin: 30px 0 0;
     }

     .expectations-content {
         padding: 30px;
     }

     .timeline-content ul {
         margin-bottom: 1rem;
     }

     .hero-container {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .hero-content {
         padding-bottom: 0;
     }

     .hero-content h1 {
         font-size: 2em;
     }

     .section-title {
         font-size: 2em;
     }

     .timeline-item {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .pricing-grid {
         grid-template-columns: 1fr;
     }
 }