:root {
    /* Color palette based on anti-bullying awareness - orange for unity and action */
    --primary: #ff6b35;      /* Vibrant orange - energy, enthusiasm, action */
    --primary-dark: #e55a2b;
    --primary-light: #ff8c42;
    --secondary: #2c3e50;    /* Dark blue-gray - trust, stability */
    --accent: #ecf0f1;       /* Light gray - clean background */
    --text: #333333;         /* Dark gray - readable text */
    --text-light: #7f8c8d;   /* Medium gray - secondary text */
    --success: #27ae60;      /* Green - positive action */
    --warning: #f39c12;      /* Orange-yellow - caution */
    --danger: #e74c3c;       /* Red - alert */
    --bg: #ffffff;           /* White - clean background */
    --border: #dddddd;       /* Light gray - subtle borders */
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: var(--secondary);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background-color: var(--accent);
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-size: 2.2rem;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section h3 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

/* Lists */
.listing {
    background-color: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}

.listing li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.listing li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
}