<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --card-border-radius: 8px;
    --card-padding: 24px;
    --primary-color: #1c669e;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.15);
    --transition-duration: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--card-border-radius);
    padding: var(--card-padding);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-duration),
                box-shadow var(--transition-duration);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Apply transition-delay only to the initial appearance animation */
.feature-card:not(.visible) {
    transition-delay: inherit; /* Use the nth-child delay values */
}

/* Reset transition-delay for all hover transitions */
.feature-card.visible,
.feature-card.visible:hover {
    transition-delay: 0s !important;
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #F0F2F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 24px; /* Size for Font Awesome icons */
}

.feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0C1F30;
}

.feature-description {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1rem; /* Added margin for spacing */
}

.feature-subtext { /* Style for the "Why This Matters" part */
     color: #4a5568; /* Slightly darker gray */
     font-size: 0.9rem;
}

.feature-subtext ul {
    list-style-type: disc; /* Use standard bullets */
    padding-left: 20px; /* Indent the list */
    margin-top: 0.5rem;
}

.feature-subtext li {
    margin-bottom: 0.3rem;
}

/* Animation delays for each card - only for initial reveal */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }
/* Add more if needed */

/* Ensure hover effects are still applied */
.feature-card.visible:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .themify_builder_content-21686 .tb_899k102.module-icon {
        bottom: 50px;
    }
    .features-grid {
        gap: 1rem;
    }
}

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

/* Tech highlight Section Styles */
.tech-highlight {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1c669e 0%, #2a8fd8 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 6px 24px rgba(28, 102, 158, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.tech-highlight.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-highlight-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-highlight-icon {
    font-size: 4rem;
    margin-right: 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-highlight-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-highlight-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Responsive adjustments for Cora section */
@media (max-width: 768px) {
    .tech-highlight-container {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-highlight-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .tech-highlight-title {
        font-size: 2rem;
    }
    .tech-highlight-description {
        font-size: 16px;
        line-height: 26px;
    }
}</pre></body></html>