/* Minimal CSS for bot pre-rendered pages */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

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

.header {
    background: #1e40af;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
}

.content {
    background: white;
    margin: 20px 0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.loading {
    text-align: center;
    color: #64748b;
    margin: 40px 0;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    border-top-color: #3b82f6;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

.service-card {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.service-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e40af;
}

.cta {
    background: #1e40af;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 8px;
}

.phone {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}