* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: #2C2C2C;
            background-color: #FFFFFF;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Modern color palette */
        :root {
            --navy: #0A1A35;
            --navy-light: #1A2A48;
            --silver: #E8E8E8;
            --silver-dark: #D1D1D1;
            --white: #FFFFFF;
            --accent: #3A506B;
            --gold: #C6A972;
        }
        

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }

        /* Utily */
        a{
            text-decoration: none;
        }

        li{
            list-style-type: none;
        }
        
        /* Page Header - Updated to match catalog design */
        .page-header {
            background: linear-gradient(rgba(10, 26, 53, 0.9), rgba(10, 26, 53, 0.9)), url('https://images.unsplash.com/photo-1584622781564-1d987f7333c1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1728&q=80') no-repeat center center/cover;
            padding: 120px 0 80px;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
            opacity: 0.9;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
        }
        
        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--gold);
        }
        
        .breadcrumb span {
            color: var(--gold);
        }
        
       
        
        /* About Sections */
        .about-section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }
        
        .section-title p {
            color: #5A5A5A;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #5A5A5A;
        }
        
        .highlight {
            color: var(--gold);
            font-weight: 600;
        }
        
        /* Values Section */
        .values-section {
            background: #f9f9f9;
            padding: 100px 0;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .value-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--navy);
        }
        
        .value-card p {
            color: #5A5A5A;
            font-size: 0.95rem;
        }
        
        
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(10, 26, 53, 0.9), rgba(10, 26, 53, 0.9)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            padding: 1rem 2.2rem;
            border-radius: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            outline: none;
        }
        
        .btn-primary {
            background-color: var(--gold);
            color: var(--navy);
        }
        
        .btn-primary:hover {
            background-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        
        

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-card {
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
        }
        
        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .page-header {
                padding: 100px 0 60px;
            }
            
            .about-section {
                padding: 80px 0;
            }
            
            .value-card {
                padding: 30px 20px;
            }
            
            .breadcrumb {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease forwards;
        }
        
        /* WhatsApp float button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }