/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22307f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #22307f;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22307f;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin: 20px 0;
}

.cta-button:hover {
    background-color: #20b358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button.pulse {
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #22307f 0%, #3a4a9a 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    color: white;
    font-size: 2.8rem;
}

.hero h1 i {
    color: #F4844C;
    margin-right: 15px;
}

.hero-highlight {
    background-color: rgba(244, 132, 76, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #F4844C;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hero-highlight i {
    color: #F4844C;
    font-size: 1.5rem;
    margin-top: 5px;
}

.hero-highlight p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: #e9e9e9;
    margin-bottom: 20px;
}

.hero-cta-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.audience-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-item i {
    font-size: 2.5rem;
    color: #F4844C;
    margin-bottom: 20px;
}

.audience-conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #22307f;
    margin: 40px 0 20px 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: white;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #F4844C;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22307f, #3a4a9a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    color: #22307f;
    margin-bottom: 15px;
}

/* Challenges Section */
.challenges {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9e9e9 0%, #f5f5f5 100%);
}

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

.challenge-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-3px);
}

.challenge-quote {
    background: #22307f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.challenge-quote i {
    color: #F4844C;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.challenge-quote p {
    color: white;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.challenge-solution {
    color: #555;
    font-weight: 500;
}

/* Method Section */
.method {
    padding: 80px 0;
    background: white;
}

.method-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.method-videos {
    margin: 40px 0 50px 0;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.method-steps {
    margin: 50px 0;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.method-step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4844C, #ff6b47);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 15px;
}

.step-content h3 i {
    color: #F4844C;
    margin-right: 10px;
}

.step-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    color: #555;
}

.bonus-section {
    background: linear-gradient(135deg, #22307f, #3a4a9a);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: center;
}

.bonus-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.bonus-section h3 i {
    color: #F4844C;
    margin-right: 15px;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.bonus-item i {
    font-size: 1.5rem;
    color: #F4844C;
}

.bonus-item p {
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9e9e9 0%, #f5f5f5 100%);
}

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

.testimonial-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content i {
    color: #F4844C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #22307f;
    font-weight: 600;
}

.testimonial-author i {
    color: #F4844C;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about h2 i {
    color: #F4844C;
    margin-right: 15px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.about-credentials {
    text-align: center;
    font-weight: 600;
    color: #22307f;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #22307f;
}

.faq-question i {
    color: #F4844C;
    margin-top: 3px;
    font-size: 0.9rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #22307f 0%, #3a4a9a 100%);
    color: white;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.final-cta h2 {
    color: white;
    text-align: left;
    font-size: 2.5rem;
}

.final-cta h2 i {
    color: #F4844C;
    margin-right: 15px;
}

.final-cta p {
    color: #e9e9e9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.final-cta-highlight {
    background: rgba(244, 132, 76, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #F4844C;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.final-cta-highlight i {
    color: #F4844C;
    margin-top: 5px;
}

.final-cta-highlight p {
    color: white;
    font-weight: 600;
    margin: 0;
}

.final-button {
    font-size: 1.3rem;
    padding: 20px 40px;
}

.final-cta-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #22307f;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #e9e9e9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content,
    .about-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px auto;
    }
    
    .audience-grid,
    .benefits-grid,
    .challenges-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .final-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .audience-grid,
    .benefits-grid,
    .challenges-grid,
    .testimonials-grid,
    .faq-grid {
        gap: 20px;
    }
    
    .benefit-item,
    .challenge-item,
    .testimonial-item,
    .faq-item {
        padding: 25px 20px;
    }
}
