/* Global Styles */
:root {
    --primary-color: #0f172a;
    /* Slate 900 - Deep Corporate Blue */
    --secondary-color: #3b82f6;
    /* Blue 500 - Trustworthy Accent */
    --accent-color: #f59e0b;
    /* Amber 500 - Highlight/Action */
    --text-color: #334155;
    /* Slate 700 */
    --light-text: #f8fafc;
    /* Slate 50 */
    --background-color: #ffffff;
    --light-bg: #f1f5f9;
    /* Slate 100 */
    --dark-bg: #0f172a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;

    /* Vertical Specific Colors */
    --bicycle-color: #ef4444;
    /* Red for high energy/danger/safety */
    --wellness-color: #ec4899;
    /* Pink/Magenta for wellness/intimacy (subtle) */
    --decor-color: #eab308;
    /* Yellow/Gold for light/festive */
    --baby-color: #8b5cf6;
    /* Soft Purple/Blue for baby care */
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn-primary::after {
    display: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Specific Section Styles */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: rgba(245, 158, 11, 0.1);
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-hero-content {
    max-width: 750px;
    z-index: 2;
    padding: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    padding: 80px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-block-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.content-block p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========================================
   ABOUT PAGE - PILLARS
   ======================================== */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-pillar-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    text-align: center;
}

.about-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, var(--secondary-color), #2563eb);
}

.about-pillar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-pillar-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   BRANDS SHOWCASE
   ======================================== */
.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.brand-showcase-item {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.brand-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.brand-showcase-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.brand-showcase-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.brand-showcase-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* ========================================
   VALUES GRID
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   PROCESS PAGE - TIMELINE
   ======================================== */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.step-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(to bottom, var(--secondary-color), #e2e8f0);
    margin-top: 8px;
    border-radius: 2px;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-card-header {
    padding: 25px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-card-header i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.step-card-header h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.step-card-body {
    padding: 30px;
    background: white;
}

.step-card-body>p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-list {
    list-style: none;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.step-list li i {
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========================================
   PROCESS ASSURANCE BANNER
   ======================================== */
.process-assurance {
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.assurance-content {
    max-width: 700px;
    margin: 0 auto;
}

.assurance-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.assurance-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.assurance-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   QUALITY & SAFETY PAGE
   ======================================== */
.quality-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.quality-feature {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quality-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.quality-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.quality-feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.quality-feature-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.safety-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.safety-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.safety-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.safety-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.safety-card>p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.safety-list {
    list-style: none;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.safety-list li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* ========================================
   CERTIFICATIONS PAGE
   ======================================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
}

.cert-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.cert-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.cert-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.cert-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.cert-info p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cert-applies {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cert-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.standards-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.standards-info-item {
    text-align: center;
    padding: 30px;
}

.standards-info-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.standards-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.standards-info-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    align-items: flex-start;
}

.disclaimer-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 3px;
}

.disclaimer-text h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #92400e;
}

.disclaimer-text p {
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========================================
   BRAND/VERTICAL PAGE - MFG & QUALITY SECTION
   ======================================== */
.mfg-quality-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.mfg-quality-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mfg-quality-section h3 i {
    color: var(--secondary-color);
}

.mfg-quality-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.mfg-quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    border: 1px solid #e2e8f0;
}

.mfg-quality-list li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   PRODUCT QUALITY EXPANDABLE
   ======================================== */
.quality-info-expandable {
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.quality-info-toggle {
    width: 100%;
    padding: 14px 20px;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.quality-info-toggle:hover {
    background: #f1f5f9;
}

.quality-info-toggle i {
    transition: var(--transition);
    color: var(--secondary-color);
}

.quality-info-toggle.open i {
    transform: rotate(180deg);
}

.quality-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.quality-info-content.open {
    max-height: 300px;
}

.quality-info-body {
    padding: 20px;
}

.quality-info-body ul {
    list-style: none;
}

.quality-info-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.quality-info-body ul li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Verticals Grid */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vertical-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    position: relative;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 220px;
    background-color: #f1f5f9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-brands {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-text:hover {
    gap: 10px;
}

/* Stats Section */
.stats {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Brand Bar */
.brand-bar {
    background-color: #f8fafc;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.brand-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.7;
}

.brand-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.brand-logo-text:hover {
    color: var(--primary-color);
    opacity: 1;
}


/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
        gap: 15px;
    }

    .step-connector {
        flex-direction: row;
        width: auto;
    }

    .step-line {
        display: none;
    }

    .quality-feature {
        flex-direction: column;
        gap: 15px;
    }

    .cert-card {
        flex-direction: column;
        gap: 15px;
    }

    .disclaimer-box {
        flex-direction: column;
        gap: 15px;
    }

    .mfg-quality-section {
        padding: 25px;
    }

    .mfg-quality-list {
        grid-template-columns: 1fr;
    }
}