/* ===== 全局变量 ===== */
: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);
}

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

/* ===== 加载动画 ===== */
.c27ffcd9a {
    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;
}

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

.c2440aca4 {
    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); }
}

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

.c7dcb838c.ce7c1b339 {
    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);
}

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

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

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

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

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

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

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

.ce32a59a0 a:hover::after,
.ce32a59a0 a.c695a3de0::after {
    width: 100%;
}

.ca1c7aa5e {
    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;
}

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

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

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

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

.c32f73540 {
    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); }
}

.c10053faa {
    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%
    );
}

.c1a397192 {
    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);
    }
}

.ce3353e24 {
    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;
}

.c00db935f 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;
}

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

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

.c99d44075 {
    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);
}

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

.c8f9775ab {
    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;
}

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

/* ===== 信任背书 ===== */
.c3aeb3650 {
    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);
}

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

.c830bea48 {
    padding: 20px;
}

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

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

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

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

.cf3c17f0d {
    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);
}

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

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

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

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

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

.ccabd44f7 {
    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);
}

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

.c47bfc71a {
    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;
}

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

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

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

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

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

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

.c0e3b1a63 {
    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);
}

.c3cbc9d86:hover .c0e3b1a63 {
    opacity: 1;
}

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

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

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

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

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

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

.c077bfb36 {
    list-style: none;
}

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

.c077bfb36 .c41205ea0 {
    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;
}

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

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

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

.cdf3beaff::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));
}

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

.c308d1665 {
    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;
}

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

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

/* ===== 报价工具 ===== */
.c2dfa8368 {
    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;
}

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

.c4609878f {
    margin-bottom: 20px;
}

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

.c4609878f select,
.c4609878f input,
.c4609878f 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);
}

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

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

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

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

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

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

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

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

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

.cbc946c50.c695a3de0 {
    background: var(--color-primary);
    transform: scale(1.2);
}

.c4cb72bb7 {
    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);
}

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

.c4cb72bb7.c1d5cf876 { left: 20px; }
.c4cb72bb7.c05ff2ca4 { right: 20px; }

/* ===== CTA Section ===== */
.c26a77263 {
    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);
}

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

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

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

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

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

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

.c7f13a1cf {
    list-style: none;
}

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

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

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

.c87bdb6cf {
    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 ===== */
.c8f4f7c45 {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

.cd1b51252 {
    padding: 25px;
}

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

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

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

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

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

.ce432696e .c41205ea0 {
    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;
}

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

.ce432696e 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;
}

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

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

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

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

@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .ce32a59a0 {
        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);
    }
    
    .ce32a59a0.c695a3de0 {
        right: 0;
    }
    
    .c5cac537b {
        display: flex;
    }
    
    .c00db935f h1 {
        font-size: 2.2rem;
    }
    
    .c00db935f p {
        font-size: 1rem;
    }
    
    .ca0a85a3a {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .c39c1258e {
        grid-template-columns: 1fr;
    }
    
    .c65f7e70c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c9a664cb9 {
        grid-template-columns: 1fr;
    }
    
    .c62e5b231 {
        grid-template-columns: 1fr;
    }
    
    .c0a222697 {
        grid-template-columns: 1fr;
    }
    
    .cdf3beaff {
        flex-direction: column;
        gap: 30px;
    }
    
    .cdf3beaff::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: 100%;
    }
    
    .cd5bcc4a3 {
        text-align: left;
        padding-left: 80px;
    }
    
    .c308d1665 {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .c8da6b376 {
        grid-template-columns: 1fr;
    }
    
    .c2dfa8368 {
        padding: 30px 20px;
    }
    
    .ccb91bcf7 {
        padding: 60px 0;
    }
    
    .c683e86f2 h2 {
        font-size: 1.8rem;
    }
    
    .c8f4f7c45 {
        height: 300px;
    }
    
    .c8f4f7c45 h1 {
        font-size: 2rem;
    }
    
    .c3dba2f79 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c00db935f h1 {
        font-size: 1.8rem;
    }
    
    .cb8559fc1 {
        flex-direction: column;
        align-items: center;
    }
    
    .ca0a85a3a {
        grid-template-columns: 1fr 1fr;
    }
    
    .c65f7e70c {
        grid-template-columns: 1fr;
    }
}
