/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default focus outlines and selection highlights */
*:focus {
    outline: none !important;
}

*::selection {
    background: rgba(255, 107, 53, 0.2);
}

*::-moz-selection {
    background: rgba(255, 107, 53, 0.2);
}

/* Remove tap highlights on mobile */
* {
    -webkit-tap-highlight-color: transparent !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for sticky navbar height */
}

/* Ensure all sections have proper scroll margin for anchor navigation */
section {
    scroll-margin-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(71, 164, 160, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Main Content Area */
main {
    background: #ffffff;
    padding: 0;
    min-height: 50vh;
    position: relative;
}

/* Modern section backgrounds with proper visual hierarchy */
main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(71, 164, 160, 0.02) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Container for other sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
