* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

#targetDiv {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header Styles */
.header-container-vmmn {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper-vmmn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text-vmmn {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links-vmmn {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link-item-vmmn a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-item-vmmn a:hover {
    color: #3498db;
}

/* Hero Section */
.hero-section-vmmn {
    width: 100%;
    height: 50vh;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title-vmmn {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-description-vmmn {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.download-button-vmmn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-button-vmmn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Section Styles */
.section-container-vmmn {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title-vmmn {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title-vmmn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

/* Features Section */
.features-grid-vmmn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-vmmn {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card-vmmn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-vmmn {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-title-vmmn {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-description-vmmn {
    color: #666;
}

/* Benefits Section */
.benefits-section-vmmn {
    background-color: #f8f9fa;
}

.benefits-list-vmmn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item-vmmn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.benefit-number-vmmn {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.benefit-title-vmmn {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-description-vmmn {
    color: #666;
}

/* Platforms Section */
.platforms-grid-vmmn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card-vmmn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.platform-card-vmmn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform-icon-vmmn {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.platform-title-vmmn {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.platform-version-vmmn {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section-vmmn {
    background-color: #f8f9fa;
}

.testimonials-grid-vmmn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-vmmn {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.testimonial-text-vmmn {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author-vmmn {
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-role-vmmn {
    color: #999;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-grid-vmmn {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item-vmmn {
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-vmmn {
    padding: 1.5rem;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
}

.faq-answer-vmmn {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
}

.faq-answer-vmmn.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Download Page Styles */
.download-grid-vmmn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.download-card-vmmn {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card-vmmn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-icon-vmmn {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.download-title-vmmn {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.download-version-vmmn {
    color: #666;
    margin-bottom: 1rem;
}

.download-size-vmmn {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
.footer-container-vmmn {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-copyright-vmmn {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links-vmmn {
        display: none;
    }
    
    .hero-title-vmmn {
        font-size: 2rem;
    }
    
    .section-container-vmmn {
        padding: 2rem 1rem;
    }
    
    .features-grid-vmmn,
    .benefits-list-vmmn,
    .platforms-grid-vmmn,
    .testimonials-grid-vmmn,
    .download-grid-vmmn {
        grid-template-columns: 1fr;
    }
}