:root {
    --primary: #0066ff;
    --secondary: #00ccff;
    --dark: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
}

body {
    background-color: white;
    color: var(--dark);
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    margin-bottom: 3rem;
}



p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin-bottom: 1rem !important;
}

ul {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin-left: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    margin-bottom: 0.5rem !important;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    color: var(--primary);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background: #fff;
    /* or your preferred card background */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* subtle shadow like your service cards */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 102, 255, 0.1);
}

.value-item h3 {
    color: #2c3e50;
    /* adjust to match your heading color */
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    /* adjust to match your text color */
    line-height: 1.5;
}

.process-step {
    display: inline-block;
    background: #2c3e50;
    color: white;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 14px;
}