/* Global reusable CSS */
:root {
    --brand-teal: #0f766e;
    --brand-yellow: #facc15;
    --brand-dark: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #f8fafc;
}

.brand-gradient {
    background: linear-gradient(135deg, var(--brand-teal), #0891b2);
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand-dark);
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.form-input {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    outline: none;
}

.form-input:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}
