
        :root {
            --primary: #2c5aa0;
            --primary-light: #3a6bc8;
            --secondary: #f8f9fa;
            --accent: #ff6b35;
            --accent-light: #ff8a65;
            --dark: #2d3748;
            --light: #ffffff;
            --gray: #718096;
            --gradient: linear-gradient(135deg, #2c5aa0 0%, #3a6bc8 100%);
            --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* President Page Styles */
        .president-hero {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
        }
        
        .president-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .president-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .president-content {
            padding: 80px 0;
        }
        
        .president-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .president-profile {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 60px;
            margin-bottom: 60px;
            align-items: start;
        }
        
        .president-photo {
            position: relative;
        }
        
        .photo-frame {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .president-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }
        
        .president-info {
            padding-top: 0;
        }
        
        .president-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .president-bio {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .bio-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 25px;
        }
        
        .bio-text:last-child {
            margin-bottom: 0;
        }
        
        .president-message {
            background: var(--gradient);
            color: white;
            padding: 60px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .message-content {
            position: relative;
            z-index: 2;
        }
        
        .message-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .message-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .message-signature {
            text-align: center;
            margin-top: 40px;
        }
        
        .signature-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .signature-title {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .message-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            opacity: 0.1;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50%" y="50%" font-size="80" text-anchor="middle" dominant-baseline="middle" fill="white">KAMP</text></svg>');
            background-size: contain;
        }

        /* Members Section Styles */
        .members-section {
            background: var(--secondary);
            padding: 80px 0;
            border-radius: 30px;
            margin-top: 60px;
        }
        
        .members-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 50px;
        }
        
        .members-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .members-info {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .members-list {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .info-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        .info-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: var(--secondary);
            border-radius: 12px;
        }
        
        .benefit-icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .benefit-text {
            font-size: 0.9rem;
            line-height: 1.4;
            color: var(--dark);
        }
        
        .members-categories {
            list-style: none;
        }
        
        .category-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--secondary);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .category-item:hover {
            background: var(--primary-light);
            color: white;
            transform: translateX(5px);
        }
        
        .category-item:hover .category-text {
            color: white;
        }
        
        .category-icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .category-text {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--dark);
        }
        
        .application-process {
            background: var(--gradient);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-top: 40px;
        }
        
        .process-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
        }
        
        .process-step {
            text-align: center;
            flex: 1;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: white;
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 15px;
        }
        
        .step-text {
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .current-members {
            margin-top: 60px;
        }
        
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .member-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .member-logo {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .member-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .member-type {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .member-description {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .partners-section {
            margin-top: 80px;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .partner-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .partner-logo {
            width: 100px;
            height: 60px;
            background: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .partner-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .partner-description {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-main {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .president-profile {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .photo-frame {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .president-image {
                height: 500px;
            }
            
            .members-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 25px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .president-hero {
                padding: 120px 0 60px;
            }
            
            .president-hero h1 {
                font-size: 2.2rem;
            }
            
            .president-hero p {
                font-size: 1rem;
            }
            
            .president-title {
                font-size: 1.8rem;
            }
            
            .president-bio {
                padding: 30px 20px;
            }
            
            .president-message {
                padding: 40px 20px;
            }
            
            .message-title {
                font-size: 1.6rem;
            }
            
            .president-image {
                height: 400px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .members-info,
            .members-list {
                padding: 30px 20px;
            }
            
            .application-process {
                padding: 30px 20px;
            }
            
            .members-grid,
            .partners-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .president-hero h1 {
                font-size: 1.8rem;
            }
            
            .president-title {
                font-size: 1.6rem;
            }
            
            .bio-text {
                font-size: 1rem;
            }
            
            .president-image {
                height: 300px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
