/* Tailwind-like utility classes */
body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; line-height: 1.5; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.bg-blue-600 { background-color: #2563eb; }
.text-white { color: white; }
.p-4 { padding: 1rem; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.text-2xl { font-size: 1.5rem; }
.font-bold { font-weight: bold; }
.space-x-4 > * + * { margin-left: 1rem; }
.hover\:underline:hover { text-decoration: underline; }
.mt-8 { margin-top: 2rem; }
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.text-4xl { font-size: 2.25rem; }
.mb-4 { margin-bottom: 1rem; }
.text-xl { font-size: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.bg-white { background-color: white; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; }
.duration-300 { transition-duration: 300ms; }
.grid { display: grid; }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.p-6 { padding: 1.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.text-blue-600 { color: #2563eb; }
.bg-gray-800 { background-color: #1f2937; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mt-16 { margin-top: 4rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }
.text-lg { font-size: 1.125rem; }
.font-semibold { font-weight: 600; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.contact-form-container {
    background-color: #f0f9ff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-top: 2rem;
}
.contact-form-container h3 {
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}