
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .annual-review-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 46, 109, 0.1);
            border: 1px solid #e1e8f0;
        }
        
        .header {
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }
        
        .company-name {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .tagline {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .year {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .content-section {
            padding: 40px;
        }
        
        .section-title {
            color: #1e3a8a;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #3b82f6;
            display: inline-block;
        }
        
        .section-content {
            font-size: 1.1rem;
            color: #4b5563;
            margin-bottom: 40px;
        }
        
        .paragraph {
            margin-bottom: 25px;
            text-align: justify;
        }
        
        .highlight-box {
            background-color: #f0f7ff;
            border-left: 5px solid #3b82f6;
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
        }
        
        .highlight-title {
            color: #1e3a8a;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        
        .bullet-list {
            list-style-type: none;
            margin-left: 20px;
            margin-top: 15px;
        }
        
        .bullet-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }
        
        .bullet-list li:before {
            content: "•";
            color: #3b82f6;
            font-size: 1.8rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 46, 109, 0.1);
        }
        
        .stat-number {
            color: #1e3a8a;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #4b5563;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .cta-section {
            text-align: center;
            padding: 60px 40px;
            background-color: #f8fafc;
            border-radius: 20px;
            margin-top: 40px;
            border: 2px dashed #cbd5e1;
        }
        
        .cta-title {
            color: #1e3a8a;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .key-milestone {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }
        
        .milestone-text {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.8;
        }
        
        .future-plans {
            background-color: #f0f9ff;
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #bae6fd;
        }
        
        .footer {
            background-color: #0a2463;
            color: white;
            text-align: center;
            padding: 50px 40px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            margin-top: 40px;
        }
        
        .footer-text {
            opacity: 0.9;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .accent-color {
            color: #1e40af;
            font-weight: 700;
        }
        
        .bold-text {
            font-weight: 700;
            color: #1e3a8a;
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 40px 20px;
            }
            
            .company-name {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .highlight-box {
                padding: 20px;
            }
        }
    