/* Base styles extracted from styles.css */
/* Antero styling with logo colors */
:root {
    /* Logo colors */
    --dark-blue: #005EB8;        /* Text, outlines, main robot body */
    --light-blue: #4DA6FF;       /* Robot face, phone icon, accents */
    --background-beige: #FFF8F0;  /* Soft beige background */
    
    /* Primary colors (using logo colors) */
    --primary-blue: #005EB8;
    --primary-blue-light: #4DA6FF;
    --primary-blue-dark: #004a94;
    
    /* Secondary colors */
    --secondary-red: #dc2626;
    --secondary-red-light: #ef4444;
    
    /* Neutral colors (adjusted for beige background) */
    --neutral-gray-50: #faf9f7;
    --neutral-gray-100: #f5f3f0;
    --neutral-gray-200: #e8e6e3;
    --neutral-gray-300: #d4d1cc;
    --neutral-gray-400: #9ca3af;
    --neutral-gray-500: #6b7280;
    --neutral-gray-600: #4b5563;
    --neutral-gray-700: #374151;
    --neutral-gray-800: #1f2937;
    --neutral-gray-900: #111827;
    
    /* Status colors */
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-yellow: #f59e0b;
    
    /* Base colors */
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--neutral-gray-800);
    background: var(--background-beige);
    min-height: 100vh;
    position: relative;
}

.background-logo {
    position: fixed;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    object-fit: contain;
    /* Ensure smooth rendering for SVG */
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Force hardware acceleration for better rendering */
    transform: translateY(-50%) translateZ(0);
    will-change: transform;
    /* Prevent blurring */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
}

