<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Index Page Specific Styles */

/* Variables */
:root {
    --primary-color: #4361ee;
    --primary-gradient-start: #4361ee;
    --primary-gradient-end: #3730a3;
    --light-bg: #f8fafc;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    --box-shadow-hover: 0 15px 30px rgba(0,0,0,0.1);
}

/* SEO Hidden Heading */
.seo-heading {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

/* Container class for menu */
.container_menu {
    margin: 10px auto;
    max-width: 100%;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation menu hover styles */
#nav ul li a:hover, 
#nav ul li span:hover {
    background: #fff;
    color: var(--primary-color);
}

#nav ul li:hover a, 
#nav ul li:hover span {
    background: #fff;
}

.dropotron li &gt; a:hover, 
.dropotron li &gt; span:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Hero section styles */
.hero-section {
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.8em;
    margin-bottom: 2em;
    color: #4a5568;
}

/* Feature boxes */
.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    flex: 1 1 300px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 4px;
}

/* Media queries */
@media screen and (max-width: 768px) {
    .container_menu {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .features-container {
        gap: 20px;
    }
    
    .feature-box {
        flex-basis: 100%;
    }
}

/* Extracted from inline styles */
/* Banner and buttons */
#banner h2 span {
    color: #f0f4ff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.button.large.icon.fa-arrow-circle-right,
.button.alt.large.icon.fa-question-circle {
    transition: all 0.3s ease;
}

/* Stats section */
#stats {
    margin-top: -2em;
    margin-bottom: 3em;
}

#stats .box {
    text-align: center;
    padding: 1.5em 1em;
    background: linear-gradient(to bottom right, #ffffff, #f8fafc);
    border-left: 4px solid #4361ee;
}

#stats .box h3 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    color: #4361ee;
}

#stats .box p {
    margin: 0;
}

/* Features section */
#features-wrapper .container &gt; div:first-child {
    text-align: center;
    margin-bottom: 3em;
}

#features-wrapper .container &gt; div:first-child p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.box.feature .inner h2 i {
    color: #4361ee;
    font-size: 0.8em;
    margin-right: 0.3em;
}

/* Main content insights box */
#content .box {
    background: #f8fafc;
    margin: 2em 0;
}

#content .box &gt; div {
    display: flex;
    align-items: center;
}

#content .box &gt; div &gt; div:first-child {
    flex: 0 0 64px;
    margin-right: 1.5em;
}

#content .box &gt; div &gt; div:first-child i {
    font-size: 3em;
    color: #4361ee;
}

#content .box &gt; div &gt; div:last-child h3 {
    margin: 0 0 0.5em 0;
}

#content .box &gt; div &gt; div:last-child p {
    margin: 0;
}

/* CTA Banner */
.box.cta-banner {
    background: linear-gradient(135deg, #4361ee, #3730a3);
    margin: 3em 0;
    text-align: center;
    padding: 3em 2em;
    color: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.box.cta-banner &gt; div:first-child {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    opacity: 0.05;
}

.box.cta-banner &gt; div:last-child {
    position: relative;
    z-index: 1;
}

.box.cta-banner h2 {
    color: white;
    margin-bottom: 0.5em;
}

.box.cta-banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
}

.box.cta-banner .button {
    background: white;
    color: #4361ee;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Testimonials section */
.testimonials-container {
    margin-bottom: 4em;
}

.testimonials-container &gt; div:first-child {
    text-align: center;
    margin-bottom: 2em;
}

.testimonials-container .box {
    padding: 2em;
    position: relative;
}

.testimonials-container .box i.fa-quote-left {
    font-size: 2em;
    color: #e0e7ff;
    position: absolute;
    top: 1em;
    left: 1em;
}

.testimonials-container .box &gt; div {
    padding-left: 2em;
    position: relative;
}

.testimonials-container .box &gt; div &gt; div {
    display: flex;
    align-items: center;
    margin-top: 1.5em;
}

.testimonials-container .box .avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: #4361ee;
    margin-right: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonials-container .box .client-info span {
    opacity: 0.7;
}

/* Animated elements and hover effects */
#stats .box h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Banner parallax effect */
#banner.parallax-active {
    background-position: center var(--scroll-offset);
}
</pre></body></html>