
        :root {
            /* User Requested Colors */
            --primary-brand: #00234a; /* Dark Navy */
            --brand-white: #ffffff;
            --accent-green: #00d26a; 
            --text-gray: #64748b;
        }

        /* --- FIX BOOTSTRAP CONFLICTS START --- */
        
        /* 1. Remove Underlines Globally (Header/Footer Fix) */
        a, a:hover, a:focus, a:active {
            text-decoration: none !important;
        }

                    p {
                margin-top: 0;
                margin-bottom: 0rem;
            }

        /* 2. Fix Header/Login Icon Alignment 
           Bootstrap sets line-height to 1.5, which messes up existing headers.
           We reset it for the header area. 
        */
        header, .header, nav, .navbar {
            line-height: normal !important;
        }
        
        /* Fix Icon Alignment issues caused by Bootstrap's vertical-align defaults */
        .fa, .fas, .fab, .far, img, svg {
            vertical-align: baseline; 
        }

        /* Reset Box Sizing for common header elements if they look squeezed */
        *, ::after, ::before {
            box-sizing: border-box; /* Bootstrap default - usually good, but keep in mind */
        }

        /* --- FIX BOOTSTRAP CONFLICTS END --- */


        /* UNIQUE CLASSES FOR AMPERE PAGE 
           All classes prefixed with 'amp-' to avoid conflicts
        */

        /* SECTION 1: Family Selection (Cards) */
        .amp-family-section {
            padding: 80px 0;
            background-color: var(--brand-white);
        }

        .amp-family-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .amp-family-card:hover {
            border-color: var(--primary-brand);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 35, 74, 0.15);
        }

        .amp-family-title {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-brand);
            margin-bottom: 10px;
        }

        .amp-core-count {
            display: block;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-brand);
            line-height: 1;
        }

        .amp-core-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* Badges */
        .amp-family-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background-color: var(--primary-brand);
            color: white;
        }

        .amp-badge-max {
            background-color: var(--accent-green);
            color: #000;
        }

        /* Feature List inside cards */
        .amp-feature-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .amp-feature-list li {
            margin-bottom: 10px;
            color: #4b5563;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .amp-feature-list li i {
            color: var(--accent-green);
            margin-right: 10px;
        }

        /* Buttons */
        .amp-btn-brand {
            background-color: var(--primary-brand);
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            transition: all 0.3s;
            border: 2px solid var(--primary-brand);
        }

        .amp-btn-brand:hover {
            background-color: transparent;
            color: var(--primary-brand);
        }

        .amp-btn-brand-outline {
            background-color: transparent;
            color: var(--primary-brand);
            border: 2px solid var(--primary-brand);
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            transition: all 0.3s;
        }

        .amp-btn-brand-outline:hover {
            background-color: var(--primary-brand);
            color: white;
        }

        /* SECTION 2: Why Ampere (SEO Content) */
        .amp-seo-content {
            background-color: var(--primary-brand); /* #00234a */
            color: var(--brand-white);
            padding: 80px 0;
        }

        .amp-seo-content h2 {
            color: white;
        }

        .amp-seo-content p.text-muted {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .amp-tech-grid-icon {
            font-size: 2.5rem;
            color: var(--accent-green);
            margin-bottom: 20px;
        }

        .amp-seo-content h4 {
            color: white;
            font-weight: 700;
        }

        .amp-seo-content p.text-secondary {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        /* Tech Specs Table override for dark mode */
        .amp-tech-table-box {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 30px;
            margin-top: 40px;
        }
        
        .amp-tech-table-box small {
            color: rgba(255,255,255,0.5);
        }
        
        .amp-tech-table-box strong {
            color: white;
            font-size: 1.1rem;
        }
        
        .amp-tech-border-end {
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .amp-tech-border-end { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 15px; }
        }

        







        /* SECTION 3: FAQ Styles */
        .amp-faq-section {
            padding: 80px 0;
            background-color: #f8f9fa; /* Light Gray Background */
        }

        .amp-faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .amp-faq-header h2 {
            color: var(--primary-brand);
            font-weight: 800;
        }

        .amp-accordion .accordion-item {
            border: 1px solid #e2e8f0;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .amp-accordion .accordion-button {
            font-weight: 700;
            color: var(--primary-brand);
            font-size: 1.1rem;
            padding: 20px 25px;
            background: white;
            box-shadow: none;
        }

        .amp-accordion .accordion-button:not(.collapsed) {
            background-color: var(--primary-brand);
            color: white;
            box-shadow: none;
        }

        /* Customize the arrow icon color */
        .amp-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d26a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .amp-accordion .accordion-button.collapsed::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300234a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .amp-accordion .accordion-body {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
            padding: 25px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }






        #ampere-altra-unique-wrapper {
            background-color: #f8fafc;
        }

        #ampere-altra-unique-wrapper .amp-sub-hero-section {
            background-color: var(--primary-brand);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        #ampere-altra-unique-wrapper .amp-product-grid-section {
            padding: 80px 0;
            background-color: #f3f4f6;
        }

        /* Information Card Design (No Pricing) */
        #ampere-altra-unique-wrapper .amp-info-card {
            background: white;
            border-radius: 12px;
            padding: 35px;
            height: 100%;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        #ampere-altra-unique-wrapper .amp-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--accent-green);
        }

        #ampere-altra-unique-wrapper .amp-info-header {
            margin-bottom: 20px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 20px;
        }

        #ampere-altra-unique-wrapper .amp-core-large {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-brand);
            line-height: 1;
            display: block;
        }

        #ampere-altra-unique-wrapper .amp-core-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #ampere-altra-unique-wrapper .amp-use-case-title {
            font-weight: 700;
            color: #334155;
            margin-bottom: 10px;
            display: block;
        }

        #ampere-altra-unique-wrapper .amp-info-text {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        #ampere-altra-unique-wrapper .amp-feature-pill {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
            margin-bottom: 5px;
        }

        /* --- NEW SECTIONS CSS --- */

        /* Workload Section */
        #ampere-altra-unique-wrapper .amp-workload-section {
            padding: 80px 0;
            background: white;
        }

        #ampere-altra-unique-wrapper .amp-workload-card {
            text-align: center;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            height: 100%;
            transition: 0.3s;
        }
        #ampere-altra-unique-wrapper .amp-workload-card:hover {
            border-color: var(--accent-green);
            background: #f0fdf4;
        }
        
        #ampere-altra-unique-wrapper .amp-workload-icon {
            font-size: 2.5rem;
            color: var(--primary-brand);
            margin-bottom: 20px;
        }

        /* Deep Dive Section */
        #ampere-altra-unique-wrapper .amp-deep-dive-section {
            padding: 80px 0;
            background-color: var(--primary-brand);
            color: white;
        }

        #ampere-altra-unique-wrapper .amp-deep-feature {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        #ampere-altra-unique-wrapper .amp-deep-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--accent-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #00234a;
        }


        #ampere-max-unique-wrapper {
            background-color: #f8fafc;
        }

        #ampere-max-unique-wrapper .amp-sub-hero-section {
            background: linear-gradient(135deg, var(--primary-brand) 0%, #00152e 100%);
            color: white;
            padding: 90px 0;
            text-align: center;
            position: relative;
        }

        #ampere-max-unique-wrapper .amp-product-grid-section {
            padding: 80px 0;
            background-color: #f3f4f6;
        }

        /* Information Card Design */
        #ampere-max-unique-wrapper .amp-info-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        #ampere-max-unique-wrapper .amp-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--accent-green);
        }

        #ampere-max-unique-wrapper .amp-info-header {
            margin-bottom: 25px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 25px;
            text-align: center;
        }

        #ampere-max-unique-wrapper .amp-core-large {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-brand);
            line-height: 1;
            display: block;
        }

        #ampere-max-unique-wrapper .amp-core-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-green);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        #ampere-max-unique-wrapper .amp-use-case-title {
            font-weight: 800;
            color: #334155;
            margin-bottom: 15px;
            display: block;
            font-size: 1.2rem;
            text-align: center;
        }

        #ampere-max-unique-wrapper .amp-info-text {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 30px;
        }
        
        #ampere-max-unique-wrapper .amp-feature-tags {
            text-align: center;
            margin-top: auto;
        }

        #ampere-max-unique-wrapper .amp-feature-pill {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin: 0 5px 10px 0;
            border: 1px solid #e2e8f0;
        }

        /* --- NEW SECTIONS CSS --- */

        /* Workload Section */
        #ampere-max-unique-wrapper .amp-workload-section {
            padding: 80px 0;
            background: white;
        }

        #ampere-max-unique-wrapper .amp-workload-card {
            text-align: left;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            height: 100%;
            transition: 0.3s;
            background: #f8fafc;
        }
        
        #ampere-max-unique-wrapper .amp-workload-icon {
            font-size: 2rem;
            color: var(--accent-green);
            margin-bottom: 20px;
            background: #00234a;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }

        /* Deep Dive Section */
        #ampere-max-unique-wrapper .amp-deep-dive-section {
            padding: 80px 0;
            background-color: var(--primary-brand);
            color: white;
        }




