
        /* Additional styles for the About page */
        .about-hero {
            background-color: #1d3146;
            padding: 35px 0 30px;
            text-align: center;
        }
        
        .about-hero h1 {
            color: #fdfeff;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-hero h2 {
            color: #fdfeff;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .company-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .company-content {
            flex: 1;
        }
        
        .company-content h2 {
            color: #3498db;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        
        .company-content h3 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .company-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .stats-container {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item h2 {
            color: #3498db;
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        
        .stat-item p {
            color: #555;
            font-size: 1rem;
        }
        
        .company-image {
            /* flex: 1; */
            flex: 0.4;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .company-image img {
            width: 100%;
            height: auto;
            object-fit: fill;
            display: block; 
        }
        
        @media (max-width: 768px) {
            .company-section {
                flex-direction: column;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 20px;
            }
        }
    