h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 15px;
}

.company-info {
    background: #e0f2fe;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid #0ea5e9;
}

.company-info p {
    margin: 5px 0;
    font-weight: 600;
}

h2 {
    color: #1e40af;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #3b82f6;
    padding-left: 15px;
}

h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.service-card h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
    display: block;
}

.cta-section {
    background: #f8fafc;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: #1e40af;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
    }
}
