
    /* Base Styles */
    .tech-container {
        font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .tech-hero {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE334/2507/31/photo/h-worksbicyclehubWorkshop-lab.webp');
        background-size: cover;
        background-position: center;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-bottom: 80px;
    }
    
    .tech-title {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }
    
    .tech-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }
    
    /* Mission Statement */
    .mission-statement {
        padding: 80px 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700 !important;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        background: #e74c3c;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-text {
        max-width: 100%;
        margin: 0 auto 50px;
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        text-align: left;
    }
    
    .tech-gallery {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
    }
    
    .gallery-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .gallery-image:hover {
        transform: translateY(-10px);
    }
    
    /* Feature Sections */
    .feature-section {
        padding: 100px 0;
    }
    
    .dark-bg {
        background-color: #f8f9fa;
    }
    
    .light-bg {
        background-color: white;
    }
    
    .feature-container {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    
    .reverse {
        flex-direction: row-reverse;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-image {
        flex: 1;
    }
    
    .feature-title {
        font-size: 2.2rem;
        font-weight: 700 !important;
        margin-bottom: 25px;
        color: #2c3e50;
    }
    
    .feature-divider {
        width: 60px;
        height: 4px;
        background: #e74c3c;
        margin-bottom: 30px;
    }
    
    .feature-text {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .tech-image {
        width: 100%;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .tech-diagram {
        width: 100%;
        max-width: 500px;
        display: block;
        margin: 0 auto;
    }
    
    /* Lists & Specs */
    .feature-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }
    
    .feature-list li {
        padding: 10px 0;
        padding-left: 30px;
        position: relative;
        font-size: 1rem;
    }
    
    .feature-list li:before {
        content: '✓';
        color: #e74c3c;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .tech-specs {
        display: flex;
        gap: 30px;
        margin-top: 40px;
    }
    
    .spec-item {
        text-align: center;
    }
    
    .spec-value {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
    }
    
    .spec-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #7f8c8d;
    }
    
    /* Compatibility Grid */
    .compatibility-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .compat-item {
        padding: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .compat-item.highlight {
        border-color: #e74c3c;
        background-color: rgba(231, 76, 60, 0.05);
    }
    
    .compat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .compat-icon {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 10px;
    }
    
    .compat-name {
        font-weight: 600;
        display: block;
    }
    
    .compat-detail {
        font-size: 0.8rem;
        color: #7f8c8d;
        display: block;
        margin-top: 5px;
    }
    
    /* Highlights */
    .feature-highlights {
        margin-top: 30px;
    }
    
    .highlight-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-right: 15px;
        color: #e74c3c;
    }
    
    /* CTA Section */
    .tech-cta {
        background-color: #2c3e50;
        color: white;
        text-align: center;
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    .btn {
        display: inline-block;
        background: white;
        color: #1a365d;
        padding: 18px 45px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
        position: relative;
        overflow: hidden;
        border: 2px solid white;
    }
    .btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
    }
    .btn:hover:before {
        left: 100%;
    }
    .btn:hover {
        background: transparent;
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgb(0 0 0 / 20%);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .feature-container {
            flex-direction: column;
            gap: 40px;
        }
        
        .reverse {
            flex-direction: column;
        }
        
        .feature-content, .feature-image {
            width: 100%;
        }
        
        .tech-gallery {
            flex-direction: column;
            align-items: center;
        }
    }
    
    @media (max-width: 768px) {
        .tech-title {
            font-size: 2.5rem;
        }
        
        .tech-subtitle {
            font-size: 1.2rem;
        }
        
        .section-title, .feature-title {
            font-size: 2rem;
        }
        
        .tech-specs {
            flex-direction: column;
            gap: 20px;
        }
        
        .compatibility-grid {
            grid-template-columns: 1fr;
        }
    }
