:root {
            --rotary-blue: #2b4486;
            --rotary-gold: #f7a50a;
            --dark-blue: #2b4486;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--dark-blue) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight:500;
            font-size: 1.5rem;
            color: white !important;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--rotary-gold) !important;
        }
        
        .hero-section {
           /*  background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--dark-blue) 100%); */
            background: linear-gradient(rgba(0, 93, 170, 0.8), rgba(0, 93, 170, 0.5)), 
                url('images/banner-home.jpg') center/cover;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight:500;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .btn-primary {
            background-color: var(--rotary-gold);
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #e09610;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247,168,27,0.4);
            text-decoration: none;
        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--rotary-blue);
            text-decoration: none;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight:500;
            color: var(--rotary-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--rotary-gold);
        }
        
        .card {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--rotary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .stats-section {
            background: linear-gradient(135deg, var(--rotary-gold) 0%, #e09610 100%);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight:500;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .pillar-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--rotary-gold);
        }
        
        .pillar-card h4 {
            color: var(--rotary-blue);
            font-weight:500;
        }
        
        
        .cta-section {
            background: linear-gradient(135deg, #005daa 0%, var(--dark-blue) 100%);
            color: white;
            padding: 80px 0;
        }