:root {
    /* Colors */
    /* Colors */
    --primary-color: #3db5a0;
    /* Dark Teal for better contrast */
    /* Brand Teal from Logo */
    --secondary-color: #fc7f6b;
    /* Brand Coral from Logo */
    --accent-color: #fc7f6b;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #f0fdfc;
    /* Very light teal tint */
    --white: #ffffff;
    --error: #e63946;
    --success: #2a9d8f;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --body-size: 1.125rem;

    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }
}