﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #C9A96E;
            --gold-light: #E8D5B5;
            --gold-dark: #A68B5B;
            --cream: #FDF8F3;
            --dark: #1A1A1A;
            --gray: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark);
            background: var(--cream);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            background: rgba(253, 248, 243, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.06);
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-back {
            color: var(--gray);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-back:hover {
            color: var(--gold);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--gold);
            color: white;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 1px solid var(--gold);
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--gold);
        }

        /* Language Switcher */
        .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 12px;
            border: 1px solid var(--gold);
            border-radius: 4px;
            transition: all 0.3s;
        }
        .lang-switcher:hover {
            background: var(--gold);
            color: white;
        }
        .lang-switcher:hover .lang-text {
            color: white;
        }
        .lang-text {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            color: var(--gold);
            transition: color 0.3s;
        }
        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid var(--gold);
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            display: none;
            min-width: 120px;
            z-index: 1001;
        }
        .lang-dropdown.show {
            display: block;
        }
        .lang-option {
            padding: 10px 15px;
            font-size: 13px;
            color: var(--dark);
            transition: background 0.3s;
            cursor: pointer;
        }
        .lang-option:hover {
            background: var(--cream);
        }
        .lang-option.active {
            background: var(--gold);
            color: white;
        }

        /* Product Hero Section */
        .product-hero {
            padding: 140px 60px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
            min-height: 80vh;
        }

        .product-hero-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 3px solid var(--gold);
            box-shadow: 0 20px 60px rgba(201, 169, 110, 0.4), inset 0 0 20px rgba(201, 169, 110, 0.05);
            animation: fadeInUp 1s ease;
            aspect-ratio: 1 / 1;
            background: var(--cream);
        }

        /* Product Hero Carousel */
        .product-hero-carousel {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-carousel-track {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-carousel-slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-carousel-slide.active {
            opacity: 1;
        }

        .hero-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .hero-carousel-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 12px;
            pointer-events: none;
            z-index: 5;
        }

        .hero-carousel-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.85);
            border: 1px solid rgba(201, 169, 110, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.3s;
            opacity: 0;
        }

        .product-hero-image:hover .hero-carousel-arrow {
            opacity: 1;
        }

        .hero-carousel-arrow:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .hero-carousel-arrow svg {
            width: 14px;
            height: 14px;
            stroke: var(--dark);
            fill: none;
            stroke-width: 2;
        }

        .hero-carousel-arrow:hover svg {
            stroke: white;
        }

        .hero-carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .hero-carousel-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 1px solid var(--gold);
            cursor: pointer;
            transition: all 0.3s;
        }

        .hero-carousel-dots span.active {
            background: var(--gold);
        }

        .product-hero-image:hover img {
            transform: scale(1.03);
        }

        .hero-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: white;
            padding: 10px 22px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.5);
        }

        .product-hero-info {
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .product-tag {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 5px;
            color: var(--gold);
            margin-bottom: 16px;
            display: block;
        }

        .product-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .product-title em {
            color: var(--gold);
            font-style: italic;
        }

        .product-short-desc {
            font-size: 16px;
            color: var(--gray);
            line-height: 2;
            margin-bottom: 30px;
        }

        .product-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 35px;
        }

        .highlight-tag {
            padding: 8px 18px;
            border: 1px solid var(--gold);
            border-radius: 25px;
            font-size: 12px;
            letter-spacing: 1px;
            color: var(--gold);
            background: rgba(201, 169, 110, 0.04);
            transition: all 0.3s;
        }

        .highlight-tag:hover {
            background: var(--gold);
            color: white;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-outline {
            padding: 16px 40px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-family: inherit;
            font-size: 14px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: white;
        }

        /* Section Styles */
        section {
            padding: 100px 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 5px;
            color: var(--gold);
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .section-line {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto;
        }

        /* Attributes Section */
        .attributes {
            background: white;
            border-top: 1px solid rgba(201, 169, 110, 0.2);
            border-bottom: 1px solid rgba(201, 169, 110, 0.2);
        }

        .attr-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .attr-item {
            text-align: center;
            padding: 35px 20px;
            border-right: 1px solid rgba(201, 169, 110, 0.15);
            transition: all 0.3s;
        }

        .attr-item:last-child {
            border-right: none;
        }

        .attr-item:hover {
            background: rgba(201, 169, 110, 0.04);
        }

        .attr-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .attr-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .attr-label {
            font-size: 11px;
            color: var(--gray);
            letter-spacing: 2px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .attr-value {
            font-weight: 600;
            font-size: 14px;
            color: var(--dark);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border: 1px solid rgba(201, 169, 110, 0.2);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(201, 169, 110, 0.2);
            border-color: var(--gold);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .feature-card h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .feature-card p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* Ingredients Section */
        .ingredients {
            background: var(--cream);
        }

        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .ingredient-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 110, 0.2);
            transition: all 0.4s;
        }

        a.ingredient-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .ingredient-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.2);
            border-color: var(--gold);
        }

        .ingredient-icon-area {
            height: 130px;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .ingredient-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ingredient-img-contain {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Trilogy detail - product images larger */
        .ingredient-card-product .ingredient-icon-area {
            height: 280px;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 100%);
            padding: 20px;
        }

        .ingredient-card-product .ingredient-img {
            object-fit: contain;
        }

        .ingredient-svg {
            width: 64px;
            height: 64px;
            display: block;
        }

        .ingredient-icon-circle {
            width: 64px;
            height: 64px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ingredient-icon-circle svg {
            width: 30px;
            height: 30px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .ingredient-info {
            padding: 25px;
            text-align: center;
        }

        .ingredient-info h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .ingredient-info .ingredient-subtitle {
            font-size: 12px;
            color: var(--gold);
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .ingredient-info p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* Directions Section */
        .directions {
            background: white;
        }

        .directions-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-card::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -18px;
            width: 30px;
            height: 1px;
            background: var(--gold-light);
        }

        .step-card:last-child::after {
            display: none;
        }

        .step-number {
            width: 70px;
            height: 70px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--gold);
            margin: 0 auto 20px;
            transition: all 0.3s;
        }

        .step-card:hover .step-number {
            background: var(--gold);
            color: white;
        }

        .step-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .step-card p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.7;
        }

        .directions-video {
            margin-top: 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .directions-video video {
            width: 100%;
            display: block;
            border-radius: 16px;
        }

        .directions-tip {
            margin-top: 25px;
            background: var(--cream);
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            border: 1px solid rgba(201, 169, 110, 0.2);
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }

        .directions-tip svg {
            width: 30px;
            height: 30px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            flex-shrink: 0;
        }

        .directions-tip p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* Results Section */
        .results-section {
            background: linear-gradient(180deg, var(--cream) 0%, white 100%);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .results-grid-three {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
        }

        .result-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            border: 1px solid rgba(201, 169, 110, 0.2);
            transition: all 0.3s;
        }

        .result-card:hover {
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.15);
            border-color: var(--gold);
        }

        .result-percentage {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .result-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .result-card p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.7;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
            text-align: center;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 60%;
            height: 160%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-banner h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 400;
            color: white;
            margin-bottom: 20px;
        }

        .cta-banner h2 em {
            color: var(--gold);
            font-style: italic;
        }

        .cta-banner p {
            font-size: 16px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 60px 30px;
            text-align: center;
        }

        footer .logo {
            display: inline-block;
            margin-bottom: 15px;
            color: var(--gold);
        }

        footer p {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.8;
        }

        footer a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--gold-light);
        }

        /* Product Meta Bar */
        .product-meta {
            background: white;
            border-top: 1px solid rgba(201, 169, 110, 0.15);
            border-bottom: 1px solid rgba(201, 169, 110, 0.15);
        }

        .meta-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 25px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 25px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .meta-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }

        .meta-label {
            font-size: 12px;
            color: var(--gray);
            letter-spacing: 1px;
        }

        .meta-value {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
        }

        .meta-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            section {
                padding: 70px 40px;
            }

            .product-hero {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 130px 40px 60px;
            }

            .features-grid,
            .ingredients-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .step-card::after {
                display: none;
            }

            .attr-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .attr-item {
                border-bottom: 1px solid rgba(201, 169, 110, 0.15);
            }

            .attr-item:nth-child(2) {
                border-right: none;
            }

            .results-grid {
                grid-template-columns: 1fr 1fr;
            }

            .results-grid-three {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-left {
                gap: 15px;
            }

            .nav-cta {
                display: none;
            }

            .logo {
                font-size: 22px;
            }

            section {
                padding: 60px 20px;
            }

            .product-hero {
                padding: 120px 20px 50px;
                gap: 35px;
            }

            .features-grid,
            .ingredients-grid {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .attr-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .results-grid-three {
                grid-template-columns: 1fr;
            }

            .cta-banner {
                padding: 60px 25px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-outline {
                width: 100%;
                text-align: center;
            }

            .product-meta .meta-inner {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Intro Images Section */
        .intro-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .intro-image-card {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 110, 0.2);
            box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
            transition: all 0.3s;
        }

        .intro-image-card:hover {
            box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
            border-color: var(--gold);
        }

        .intro-image-card img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        /* Patent Section */
        .results-grid-four {
            grid-template-columns: repeat(2, 1fr);
            max-width: 1100px;
        }

        .result-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .result-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .patent-badge {
            max-width: 1100px;
            margin: 40px auto 0;
            padding: 25px 40px;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.03) 100%);
            border: 1px solid var(--gold);
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            color: var(--gold-dark);
            letter-spacing: 1px;
            line-height: 1.8;
        }

        /* Certifications Grid */
        .section-subtitle {
            font-size: 14px;
            color: var(--gray);
            margin-top: -10px;
            margin-bottom: 0;
            letter-spacing: 1px;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .cert-card {
            background: white;
            border: 1px solid rgba(201, 169, 110, 0.2);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
        }

        .cert-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.2);
            border-color: var(--gold);
        }

        .cert-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .cert-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
            stroke: white;
            stroke-width: 1;
        }

        .cert-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .cert-card p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .results-grid-four {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .cert-grid {
                grid-template-columns: 1fr;
            }

            .results-grid-four {
                grid-template-columns: 1fr;
            }

            .patent-badge {
                padding: 20px;
                font-size: 13px;
            }
        }