/* About Page Specific Styles */
        .about-hero {
          background: linear-gradient(rgb(37 42 45 / 85%), rgb(0 0 0 / 90%)), url(../images/testimonial-bg.png);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 70px 0 60px;
            margin-top: 0;
        }
        
        .about-hero h1 {
            font-size: 28px;
            font-weight: 700;
        }
        
        .about-hero h1 span {
            color: #00c9c9;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-breadcrumb {
         
    font-size: 18px;
        }
        
        .about-breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        .about-breadcrumb span {
            color: white;
            margin: 0 10px;
        }
        
        .about-breadcrumb .active {
            color: #00c9c9;
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 50px 0 40px;
            }
            
            .about-hero h1 {
                font-size: 24px;
            }
        }
        
        /* Main Content Styles */
        .content {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
margin-top: 50px;
        }
        
        .brand-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #eaeaea;
        }
        
        .brand-logo {
            height: 100px;
            width: auto;
            margin-right: 25px;
            object-fit: contain;
        }
        
        .brand-title {
            font-size: 2.2rem;
            color: #0b1f2a;
           font-weight: 700;
        }
        
        .brand-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-top: 5px;
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #0b1f2a;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .parts-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .parts-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .parts-list li:before {
            content: "•";
            color: #00c9c9;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: 5px;
        }
        
        .highlight-box {
            background-color: #f0f9ff;
            border-left: 4px solid #00c9c9;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #00c9c9;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
        }
        
        .cta-button:hover {
            background-color: #009999;
            color: white;
        }
        
        /* Image Gallery Styles */
    
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .content {
                padding: 25px;
            }
            
            .brand-header {
                flex-direction: column;
                text-align: center;
            }
            
            .brand-logo {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .parts-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }


.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay Text */
.image-text {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}
