:root {
            --primary-color: #2c5aa0;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b35;
            --text-dark: #2d3748;
            --text-light: #718096;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
            --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e53e3e 100%);
            --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text-dark); overflow-x: hidden; }
.custom-navbar { background: var(--white); box-shadow: var(--shadow-light); padding: 1rem 0; position: fixed; top: 0; width: 100%; z-index: 1000; }
.navbar-brand { font-weight: 700; font-size: 1.8rem; color: var(--primary-color) !important; text-decoration: none; }
.navbar-nav .nav-link { color: var(--text-dark) !important; font-weight: 500; margin: 0 0.5rem; padding: 0.5rem 1rem !important; border-radius: 25px; transition: all 0.3s ease; }
.navbar-nav .nav-link:hover { color: var(--primary-color) !important; background: rgba(44, 90, 160, 0.1); }
.navbar-nav .nav-link.active { color: var(--white) !important; background: var(--gradient-primary); }
.page-header { background: var(--gradient-primary); padding: 8rem 0 4rem; margin-top: 80px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('') center/cover; opacity: 0.1; z-index: 1; }
.page-header-content { position: relative; z-index: 2; text-align: center; }
.page-title { font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.page-subtitle { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto; }
.about-section { padding: 6rem 0; background: var(--white); }
.about-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 2rem; }
.about-highlight { background: var(--secondary-color); padding: 2rem; border-radius: 15px; border-left: 4px solid var(--primary-color); margin: 2rem 0; }
.about-highlight h4 { color: var(--primary-color); font-weight: 600; margin-bottom: 1rem; }
.stats-section { padding: 5rem 0; background: var(--secondary-color); }
.stat-item { text-align: center; padding: 2rem; }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.5rem; }
.stat-label { font-size: 1.1rem; color: var(--text-dark); font-weight: 500; }
.values-section { padding: 6rem 0; background: var(--white); }
.value-card { background: var(--white); border-radius: 15px; padding: 2.5rem; text-align: center; box-shadow: var(--shadow-light); transition: all 0.3s ease; height: 100%; border: 1px solid rgba(44, 90, 160, 0.1); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--primary-color); }
.value-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: var(--white); }
.value-title { font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }
.value-description { color: var(--text-light); line-height: 1.6; }
.team-section { padding: 6rem 0; background: var(--secondary-color); }
.team-card { background: var(--white); border-radius: 15px; padding: 2rem; text-align: center; box-shadow: var(--shadow-light); transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.team-avatar { width: 120px; height: 120px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 3rem; color: var(--white); }
.team-name { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.team-role { color: var(--primary-color); font-weight: 500; margin-bottom: 1rem; }
.team-description { color: var(--text-light); font-size: 0.95rem; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-section { background: var(--gradient-primary); padding: 4rem 0; text-align: center; }
.cta-title { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.btn-custom-primary { background: var(--gradient-accent); border: none; padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 600; border-radius: 50px; color: var(--white); text-decoration: none; display: inline-block; transition: all 0.3s ease; box-shadow: var(--shadow-medium); }
.btn-custom-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-heavy); color: var(--white); }
.custom-footer { background: var(--text-dark); color: var(--white); padding: 3rem 0 1rem; padding-bottom: 70px; }
.footer-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--white); }
.footer-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: all 0.3s ease; }
.footer-link:hover { color: var(--accent-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2rem; padding-top: 1rem; text-align: center; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 768px) {
            .page-title { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .stat-number { font-size: 2.5rem; }
            .value-card, .team-card { margin-bottom: 2rem; }
        }

