:root {
    /* Teal / Green Theme */
    --primary: #0d9488;
    /* Teal 600 */
    --primary-hover: #0f766e;
    /* Teal 700 */
    --primary-light: #f0fdfa;
    /* Teal 50 */
    --primary-soft: #99f6e4;
    /* Teal 200 */
    --secondary: #0f172a;
    /* Slate 900 */

    --text-dark: #334155;
    /* Slate 700 */
    --text-light: #64748b;
    /* Slate 500 */
    --bg-light: #ffffff;
    --bg-off-white: #f8fafc;

    --white: #ffffff;
    --border: #e2e8f0;

    --gradient-hero: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);

    --font-main: 'Montserrat', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

figure {
    margin: 0;
}

address {
    font-style: normal;
}