/* ===== 全局变量 ===== */
:root {
    --color-primary: #B8860B;       /* 复古黄铜金 */
    --color-primary-dark: #8B6508;
    --color-primary-light: #DAA520;
    --color-secondary: #A9A9A9;     /* 机芯齿轮银 */
    --color-secondary-light: #C0C0C0;
    --color-bg-dark: #1a1a1a;
    --color-bg-light: #f5f0e8;
    --color-bg-section: #2a2420;
    --color-card: rgba(42, 36, 32, 0.85);
    --color-card-light: rgba(245, 240, 232, 0.9);
    --color-text: #e8e0d4;
    --color-text-dark: #2c2420;
    --color-text-muted: #9a9088;
    --font-heading: 'Playfair Display', 'Noto Serif SC', serif;
    --font-body: 'Noto Sans SC', 'Segoe UI', sans-serif;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-hover: 0 12px 48px rgba(184,134,11,0.2);
    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

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

/* ===== 加载动画 ===== */
.cc723faaf {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.cc723faaf.hidden {
    opacity: 0;
    visibility: hidden;
}

.cf45b371a {
    width: 80px;
    height: 80px;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== 导航栏 ===== */
.c5758c246 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.c5758c246.c459cc3d2 {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.c6cbe585e {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.c77e7cc97 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.c77e7cc97 span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.c640f946a {
    display: flex;
    list-style: none;
    gap: 30px;
}

.c640f946a a {
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

.c640f946a a:hover::after,
.c640f946a a.ca05e9d2c::after {
    width: 100%;
}

.c728c16a7 {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.c728c16a7:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184,134,11,0.4);
}

.c010e8a7b {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.c010e8a7b span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.c5860ad5c {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c1f81c938 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

.ca0ee97b8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26,26,26,0.85) 0%,
        rgba(26,26,26,0.5) 50%,
        rgba(26,26,26,0.7) 100%
    );
}

.c1648aa80 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

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

.c32593c21 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(184,134,11,0.15);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.c5860ad5c h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary), var(--color-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c5860ad5c p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.c9ff3c438 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cb75e3522 {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cb75e3522:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184,134,11,0.4);
    color: #fff;
}

.ca6380c3c {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.ca6380c3c:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== 信任背书 ===== */
.c6a299bd0 {
    padding: 60px 0;
    background: var(--color-bg-section);
    border-top: 1px solid rgba(184,134,11,0.2);
    border-bottom: 1px solid rgba(184,134,11,0.2);
}

.c7a5fddd7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.cf71f6d6a {
    padding: 20px;
}

.ce17026ef {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.cabc50a3a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== 通用Section样式 ===== */
.c1c5ccd2a {
    padding: 100px 0;
}

.c81fa97e9 {
    background: var(--color-bg-dark);
}

.c69928af9 {
    background: var(--color-bg-section);
}

.section-light {
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

.section-light h2,
.section-light h3 {
    color: var(--color-text-dark);
}

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

.c8a398eba h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.c8a398eba .c925f03b3 {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.c8a398eba .cc9c4bda5 {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 20px auto;
    border-radius: 2px;
}

/* ===== 核心服务模块 ===== */
.cc450d2e8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c82c47029 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(184,134,11,0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.c82c47029:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.c677d9b9d {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(184,134,11,0.2), rgba(184,134,11,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.c82c47029 h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary-light);
}

.c82c47029 p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== 案例展示 ===== */
.c37e099de {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ce80629e8 {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.ce80629e8 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ce80629e8:hover img {
    transform: scale(1.1);
}

.cd7860232 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: var(--transition);
}

.ce80629e8:hover .cd7860232 {
    opacity: 1;
}

.cd7860232 h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.cd7860232 span {
    color: var(--color-primary);
    font-size: 0.85rem;
}

/* ===== 痛点与解决方案 ===== */
.c9318bece {
    position: relative;
}

.c9f4cef68 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.c48d671ff {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.c48d671ff img {
    width: 100%;
    transition: var(--transition);
}

.c6e8cceb7 {
    list-style: none;
}

.c6e8cceb7 li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(184,134,11,0.15);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.c6e8cceb7 .c3d6fbd54 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 3px;
}

.c6e8cceb7 h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-primary-light);
}

.c6e8cceb7 p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== 服务流程 ===== */
.c2414584a {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.c2414584a::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
}

.c629ec451 {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 15px;
}

.c08a11ace {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.c629ec451 h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-primary-light);
}

.c629ec451 p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== 报价工具 ===== */
.cfe68de93 {
    background: var(--color-card);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid rgba(184,134,11,0.2);
    max-width: 700px;
    margin: 0 auto;
}

.cfe68de93 h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--color-primary-light);
}

.c0207a870 {
    margin-bottom: 20px;
}

.c0207a870 label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.c0207a870 select,
.c0207a870 input,
.c0207a870 textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(184,134,11,0.3);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.c0207a870 select:focus,
.c0207a870 input:focus,
.c0207a870 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(184,134,11,0.2);
}

.c0207a870 textarea {
    resize: vertical;
    min-height: 100px;
}

.cc0906df7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== 轮播图 ===== */
.cdfd01f75 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.c7d604002 {
    display: flex;
    transition: transform 0.6s ease;
}

.cc5f736d1 {
    min-width: 100%;
    position: relative;
}

.cc5f736d1 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cb7b4b193 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.cab55f577 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.cab55f577.ca05e9d2c {
    background: var(--color-primary);
    transform: scale(1.2);
}

.cee46b31e {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(26,26,26,0.7);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cee46b31e:hover {
    background: var(--color-primary);
    color: #fff;
}

.cee46b31e.cf093fb9b { left: 20px; }
.cee46b31e.cc8849b75 { right: 20px; }

/* ===== CTA Section ===== */
.c2307e822 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg-section), var(--color-bg-dark));
    text-align: center;
    border-top: 1px solid rgba(184,134,11,0.2);
}

.c2307e822 h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.c2307e822 p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.cf423f1d6 {
    background: #111;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(184,134,11,0.15);
}

.c63d8fc40 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cf7f95910 p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.7;
}

.cf423f1d6 h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.ceab46b7b {
    list-style: none;
}

.ceab46b7b li {
    margin-bottom: 10px;
}

.ceab46b7b a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.ceab46b7b a:hover {
    color: var(--color-primary);
}

.ca329e05b {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ===== 页面通用Banner ===== */
.c2f718dff {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c2f718dff img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c2f718dff .c799002db {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,26,0.75);
}

.c74517fc8 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.c2f718dff h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.cf16e44e4 {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cf16e44e4 a {
    color: var(--color-primary);
}

/* ===== 文章/资讯列表 ===== */
.cea2b4ed7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.c7cc871ad {
    background: var(--color-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(184,134,11,0.1);
    transition: var(--transition);
}

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

.c7cc871ad img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.c8218207c {
    padding: 25px;
}

.c7cc871ad .c7b8abeb0 {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.c7cc871ad h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.c7cc871ad p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== 联系表单 ===== */
.c08efc707 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.cff32a838 {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cff32a838 .c3d6fbd54 {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cff32a838 h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--color-primary-light);
}

.cff32a838 p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== 感谢页 ===== */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.thank-you p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* ===== 滚动动画 ===== */
.c7dd63f47 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.c7dd63f47.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 视差效果 ===== */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .cc450d2e8 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c37e099de {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c63d8fc40 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c9f4cef68 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .c640f946a {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .c640f946a.ca05e9d2c {
        right: 0;
    }
    
    .c010e8a7b {
        display: flex;
    }
    
    .c5860ad5c h1 {
        font-size: 2.2rem;
    }
    
    .c5860ad5c p {
        font-size: 1rem;
    }
    
    .c7a5fddd7 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cc450d2e8 {
        grid-template-columns: 1fr;
    }
    
    .c37e099de {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cea2b4ed7 {
        grid-template-columns: 1fr;
    }
    
    .c08efc707 {
        grid-template-columns: 1fr;
    }
    
    .c63d8fc40 {
        grid-template-columns: 1fr;
    }
    
    .c2414584a {
        flex-direction: column;
        gap: 30px;
    }
    
    .c2414584a::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: 100%;
    }
    
    .c629ec451 {
        text-align: left;
        padding-left: 80px;
    }
    
    .c08a11ace {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .cc0906df7 {
        grid-template-columns: 1fr;
    }
    
    .cfe68de93 {
        padding: 30px 20px;
    }
    
    .c1c5ccd2a {
        padding: 60px 0;
    }
    
    .c8a398eba h2 {
        font-size: 1.8rem;
    }
    
    .c2f718dff {
        height: 300px;
    }
    
    .c2f718dff h1 {
        font-size: 2rem;
    }
    
    .cc5f736d1 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c5860ad5c h1 {
        font-size: 1.8rem;
    }
    
    .c9ff3c438 {
        flex-direction: column;
        align-items: center;
    }
    
    .c7a5fddd7 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c37e099de {
        grid-template-columns: 1fr;
    }
}
