@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
:root {
    --primary-blue: #1a1464;
    --secondary-blue: #2d2a8c;
    --highlight-green: #00c853;
    --light-bg: #f5f7fa;
    --text-dark: #333;
    --text-light: #fff;
     --success: #00c853;

    --primary-color: #1a1464;
    --accent-color: #2d2a8c;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --success-color: #16a34a;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2ODAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGRlZnM+CiAgICA8cGF0dGVybiBpZD0ic21hbGxHcmlkIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8cGF0aCBkPSJNIDEwIDAgTCAwIDAgMCAxMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPC9wYXR0ZXJuPgogIDwvZGVmcz4KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3NtYWxsR3JpZCkiLz4KPC9zdmc+');
    opacity: 0.3;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding:0 0 80px;
}

.hero-content {
    width: 55%;
    padding-right: 40px;
}

.hero-image {
    width: 45%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
/*     box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2); */
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.discount-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--highlight-green);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.6);
}

.event-info {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
}

.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.curve {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 2;
}

.bottom-curve {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--light-bg);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 17px;
}

.about-content .btn {
    margin-top: 15px;
}

@media (max-width:992px){
    .about-section{
        padding: 24px 0;
    }
}

.instructor-section {
    padding: 128px 0 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    position: relative;
}

.instructor-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
}

.instructor-content {
    width: 55%;
    padding-right: 40px;
}

.instructor-content h2{
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 24px;
    font-weight: bold;
}

.instructor-content p{
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 12px;
}

.instructor-image {
    width: 45%;
    text-align: center;
}

.instructor-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
	  transform: scaleX(-1);
}


.pricing-section {
    padding: 48px 0;
    background-color: var(--light-bg);
    position: relative;
}

.pricing-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section .text-center{
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px 40px 120px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--primary-blue);
}

.price-note {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.pricing-section .btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin: 0;
    position: absolute;
    width: 100%;
    max-width: 300px;
    bottom: 30px;
}

.btn:hover {
    background-color: var(--secondary-blue);
}

.benefits {
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.benefit-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    fill: var(--primary-blue);
    margin-right: 10px;
    margin-top: 3px;
}

.benefit-item span {
    color: var(--text-dark);
    font-size: 15px;
}

.highlight-plan {
    position: relative;
    border: 2px solid var(--primary-blue);
}

.highlight-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section .btn{
        left: calc(50% - 150px);
    }
}

@media (max-width: 480px){
    .pricing-section .btn{
        max-width: 200px;
        left: calc(50% - 100px);
    }
}

.why-section {
    padding: 48px 0;
    background-color: var(--light-bg);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-content p {
    margin-bottom: 25px;
    font-size: 17px;
}
.faq-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    position: relative;
}


 .faq-section .section-title {
    text-align: center;
    margin-bottom: 36px;
}

 .faq-section .section-title h2 {
    color: var(--text-light);
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background-color: var(--card-bg-transparent);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(0deg);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

.footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    text-align: center;
    padding: 16px 0;
}

footer .container{
    max-width: 808px;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--highlight-green);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: var(--text-light);
}

@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 0 20px 60px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .instructor-container {
        flex-direction: column-reverse;
        padding: 48px 20px;
    }
    
    .instructor-content, .instructor-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.event-banner {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.event-free {
    display: inline-block;
    background-color: var(--highlight-green);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 5px;
}


        .testimonials-container {
            padding: 48px 0;
            background: var(--light-bg);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .divider {
            width: 120px;
            height: 4px;
            background: var(--primary-blue);
            margin: 15px auto 30px;
            border-radius: 2px;
        }

        .testimonials-container  .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--primary-blue);
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .video-card {
            background: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        } */

        .video-container {
            position: relative;
            width: 100%;
            background-color: #eee;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            overflow: hidden;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
            display: none;
        }

        .play-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(55, 114, 255, 0.3);
        }

        .play-icon:after {
            content: "";
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 22px solid white;
            margin-left: 5px;
        }

        .video-info {
            padding: 25px;
            display: none;
        }

        .video-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .video-quote {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background-size: cover;
            background-position: center;
        }

        .author-name {
            font-weight: 600;
            color: var(--dark-bg);
        }

        .cta-section {
            margin-top: 60px;
            text-align: center;
            padding: 40px 20px;
            background: var(--gradient-bg);
            border-radius: var(--border-radius);
            color: var(--light-color);
        }

        .cta-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-blue);
        }

        .cta-text {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
            color: var(--text-dark);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--highlight-green);
            color: var(--white);
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-container  .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }
        }


        /* new design */

    section.steps{
        padding: 0 0 32px;
        background: var(--light-bg);
        position: relative;
    }

    .intro {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .intro h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    
    .intro p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 30px;
    }
    
    .highlight {
      font-weight: 700;
      color: var(--primary-color);
    }
    
    .modules-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 12px;
      margin-bottom: 24px;
    }
    
    .module {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }
    
    .module:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .module-image {
      height: 200px;
      overflow: hidden;
    }
    
    .module-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .module:hover .module-image img {
      transform: scale(1.05);
    }
    
    .module-content {
      padding: 25px 25px 40px;
    }
    
    .module-title {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }
    
    .module-title h2 {
      font-size: 1.5rem;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    
    .module-title p {
      font-size: 1.1rem;
      color: var(--gray-color);
      font-style: italic;
    }
    
    .module-divider {
      height: 3px;
      width: 60px;
      background-color: var(--accent-color);
      margin-bottom: 15px;
    }
    
    .module-description p{
      margin-bottom: 20px;
      font-size: 14px;
    }
    
    .module-info {
      font-size: 0.9rem;
      color: var(--gray-color);
      font-weight: 500;
      position: absolute;
      bottom: 20px;
    }
    
    section.steps .cta-section {
      text-align: center;
      margin-top: 40px;
      padding: 40px;
      background: var(--accent-color);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    section.steps .cta-text {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 30px;
        line-height: 1.7;
        color: var(--white);
    }
        
    
    .security-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--white);
      font-size: 0.9rem;
    }
    
    .security-note i {
      color: var(--success-color);
    }
    
    @media (max-width: 768px) {
      .modules-container {
        grid-template-columns: 1fr;
      }
      
      .intro h2 {
        font-size: 2rem;
      }
      
      .intro p {
        font-size: 1.1rem;
      }
      
      .cta-section {
        padding: 30px 20px;
      }
    }

    section.bonus-section{
        padding: 48px 0 0;
        background: var(--light-bg);
        position: relative;
    }

       section.bonus-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        }
        
        section.bonus-section .header-bonus {
        text-align: center;
        margin-bottom: 3rem;
        }
        
        section.bonus-section .header-bonus h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--primary-color);
        }
        
        section.bonus-section .header-bonus p {
        font-size: 1.2rem;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
        }
        
        section.bonus-section .bonus-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        }
        
        section.bonus-section .bonus-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid var(--primary);
        }
        
        section.bonus-section .bonus-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-top: 4px solid var(--secondary);
        }
        
        section.bonus-section .bonus-image {
        height: 220px;
        overflow: hidden;
        position: relative;
        }
        
        section.bonus-section .bonus-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        }
        
        section.bonus-section .bonus-card:hover .bonus-image img {
        transform: scale(1.05);
        }
        
        section.bonus-section .bonus-content {
        padding: 1.5rem;
        }
        
        section.bonus-section .bonus-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--primary);
        }
        
        section.bonus-section .bonus-subtitle {
        font-size: 1.1rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-weight: 500;
        }
        
        section.bonus-section .divider {
        height: 3px;
        width: 50px;
        background: linear-gradient(to right, var(--primary-dark), var(--secondary));
        margin-bottom: 1rem;
        border-radius: 2px;
        }
        
        section.bonus-section .bonus-description {
        color: var(--dark);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        }
        
        section.bonus-section .feature-list {
        list-style: none;
        }
        
        section.bonus-section .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0.75rem;
        }
        
        section.bonus-section .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: var(--success);
        border-radius: 50%;
        margin-right: 0.75rem;
        flex-shrink: 0;
        }
        
        section.bonus-section .feature-icon svg {
        width: 12px;
        height: 12px;
        fill: white;
        }
        
        section.bonus-section .feature-text {
        font-size: 0.95rem;
        }
        
        section.bonus-section .feature-text strong {
        color: var(--primary);
        }
        
        @media (max-width: 768px) {
        section.bonus-section .bonus-grid {
            grid-template-columns: 1fr;
        }

        
        section.bonus-section .header-bonus h2 {
            font-size: 2rem;
        }
        }

        section.guarantee{
            background: var(--light-bg);
            padding: 0 20px;
        }

    .guarantee-container {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #0575E6, #021B79);
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 0 auto;
        max-width: 900px;
        color: white;
    }
        
    .guarantee-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 30px;
      gap: 30px;
    }
    
    .guarantee-text {
      flex: 1;
    }
    
    .guarantee-image {
      flex: 0 0 300px;
      text-align: center;
    }
    
    .guarantee-image img {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
      transition: transform 0.3s ease;
    }
    
    .guarantee-image img:hover {
      transform: scale(1.05);
    }
    
    .guarantee-heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    
    .guarantee-heading:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 3px;
      background-color: #fff;
    }
    
    .guarantee-description {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .guarantee-highlight {
      font-size: 18px;
      font-weight: 700;
      padding: 10px 20px;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      display: inline-block;
      margin-top: 10px;
    }
    
    @media (max-width: 768px) {
      .guarantee-content {
        flex-direction: column;
      }
      
      .guarantee-image {
        order: -1;
        margin-bottom: 20px;
      }
    }