.elementor-332 .elementor-element.elementor-element-20c38554{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-47339671 *//* --- Variables & Reset --- */
:root {
    --bg-color: #f0f2f5; /* Slightly darker to make cards pop */
    --card-bg: #ffffff;
    --text-primary: #111827; /* Darker black for better contrast */
    --text-secondary: #374151;
    --accent-color: #2563eb;
    --accent-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px; /* Wider container */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    background: var(--card-bg);
    padding: 60px 0 50px; /* Reduced vertical padding */
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    background-color: #eff6ff;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 3.5rem; /* Much larger */
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.35rem; /* Larger hero text */
    color: var(--text-secondary);
    font-weight: 400;
}

/* --- Grid Layout --- */
.grid-layout {
    display: grid;
    /* This creates a 2-column grid that snaps to 1 column on mobile */
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* --- Cards --- */
.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px; /* Tighter padding */
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color); /* Left accent bar instead of top */
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px;
}

.card-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e5e7eb; /* Subtle number */
    line-height: 1;
}

.card h2 {
    font-size: 1.75rem; /* Larger Headings */
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.highlight {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.card-body p {
    color: var(--text-secondary);
    font-size: 1.125rem; /* ~18px font size for readability */
    margin-bottom: 12px;
}

.card-body p:last-child {
    margin-bottom: 0;
}

/* --- Summary Box --- */
.summary-box {
    background: var(--accent-gradient);
    color: white;
    padding: 40px; /* Reduced padding */
    border-radius: 8px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.summary-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.summary-box p {
    font-size: 1.4rem; /* Big, bold text */
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px 0;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid-layout { grid-template-columns: 1fr; } /* Stack cards on mobile */
    .card-header { flex-direction: column; gap: 5px; }
    .summary-box p { font-size: 1.1rem; }
}/* End custom CSS */