@charset "utf-8";
/* CSS Document */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-blue: #1a3a8f;
            --secondary-red: #8B0000;
            --accent-gold: #FFC107;
            --light-blue: #e8f0fe;
            --light-gray: #f5f7fa;
            --medium-gray: #e0e0e0;
            --dark-text: #333333;
            --white: #ffffff;
        }
        
        body {
            background-color: var(--light-gray);
            color: var(--dark-text);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--white);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0d2a75 100%);
            color: var(--white);
            padding: 30px 40px;
            text-align: center;
            position: relative;
        }
        
        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary-red);
        }
        
        .header h1 {
            font-size: 2.2rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .header .subtitle {
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .header .year {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            padding: 6px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 15px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        }
        
        .logo-container {
            position: absolute;
            top: 30px;
            left: 40px;
            width: 70px;
            height: 70px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        }
        
        .logo-placeholder {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        
        /* Main Content */
        .main-content {
            padding: 40px;
        }
        
        .section-title {
            color: var(--primary-blue);
            font-size: 1.6rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--medium-gray);
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: var(--secondary-red);
        }
        
        /* Consistent List Styles */
        .member-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .member-item {
            display: flex;
            align-items: center;
            padding: 5px 20px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .member-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            border-left-color: var(--secondary-red);
        }
        
        .member-position {
            width: 220px;
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        
        .member-name {
            flex-grow: 1;
            font-size: 1.05rem;
            font-weight: 500;
        }
        
        .member-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .member-icon i {
            font-size: 1.2rem;
            color: var(--primary-blue);
        }
        
        /* Category Headers */
        .category-header {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 30px 0 15px 0;
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
            position: relative;
            box-shadow: 0 3px 8px rgba(26, 58, 143, 0.2);
        }
        
        .category-header::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background-color: var(--accent-gold);
            border-radius: 50%;
        }
        
        .category-header.executive {
            background-color: #2c5282;
        }
        
        .category-header.auditors {
            background-color: var(--secondary-red);
        }
        
        /* Footer */
        .footer {
            background-color: #f8f9fa;
            color: var(--dark-text);
            padding: 25px 40px;
            text-align: center;
            margin-top: 40px;
            border-top: 1px solid var(--medium-gray);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .pta-motto {
            font-style: italic;
            color: var(--secondary-red);
            margin-top: 10px;
            font-weight: 500;
        }
        
        /* Print Button */
        .print-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-red);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 100;
            border: none;
        }
        
        .print-button:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        /* Print Styles */
        @media print {
            .print-button {
                display: none;
            }
            
            body {
                padding: 0;
                background-color: white;
            }
            
            .container {
                box-shadow: none;
                border-radius: 0;
            }
            
            .member-item {
                box-shadow: none;
                border-left: 3px solid #333;
                break-inside: avoid;
            }
            
            .category-header {
                background-color: #333 !important;
                color: white !important;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header {
                padding: 25px 20px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .logo-container {
                position: relative;
                top: 0;
                left: 0;
                margin: 0 auto 15px;
            }
            
            .main-content {
                padding: 25px;
            }
            
            .member-item {
                padding: 15px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .member-position {
                width: 100%;
                padding-bottom: 5px;
                border-bottom: 1px dashed var(--medium-gray);
            }
            
            .member-icon {
                position: absolute;
                right: 15px;
                top: 15px;
                width: 35px;
                height: 35px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.5rem;
            }
            
            .header .subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
            
            .category-header {
                font-size: 1.1rem;
                padding: 12px 15px;
            }
        }
    

