/* Import existing variables from main.css */
:root {
    --primary-color: #0077B5;
    --secondary-color: #00A0DC;
    --accent-color: #f5c65d;
    --success-color: #57b894;
    --warning-color: #f5c65d;
    --danger-color: #e16745;
    --text-primary: #2C3E50;
    --text-secondary: #34495E;
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 2rem;
}

/* Hero section styles */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

/* Continue with other styles from the example CSS */
