/* ============================================
   宠物殡葬与骨灰纪念钻石定制服务 - 全站样式
   色彩体系：纯净治愈白 + 温暖原木色
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #FFFFFF;
    --color-secondary: #C8A96B;
    --color-accent: #B8956A;
    --color-bg-light: #FDFBF7;
    --color-bg-dark: #2C2420;
    --color-bg-warm: #F5F0E8;
    --color-card: rgba(255, 255, 255, 0.85);
    --color-card-dark: rgba(44, 36, 32, 0.9);
    --color-text: #2C2420;
    --color-text-light: #6B5E54;
    --color-text-white: #FDFBF7;
    --color-border: rgba(200, 169, 107, 0.3);
    --color-shadow: rgba(44, 36, 32, 0.08);
    --font-primary: 'Noto Serif SC', 'Georgia', serif;
    --font-body: 'Noto Sans SC', 'Helvetica Neue', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --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);
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.8;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.4;
}

/* Loading Animation */
.cea460197 {
    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: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cea460197.loaded {
    opacity: 0;
    visibility: hidden;
}

.c8e85d11e {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-secondary);
    animation: logoFade 1.5s ease-in-out infinite;
}

@keyframes logoFade {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* Navigation */
.c29badc39 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.c29badc39.cc93bd9f4 {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 5%;
    box-shadow: 0 2px 30px var(--color-shadow);
}

.ccf636ebe {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition);
}

.c29badc39.cc93bd9f4 .ccf636ebe {
    color: var(--color-text);
}

.c70fd1d78 {
    display: flex;
    list-style: none;
    gap: 36px;
}

.c70fd1d78 a {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 4px 0;
}

.c29badc39.cc93bd9f4 .c70fd1d78 a {
    color: var(--color-text);
}

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

.c70fd1d78 a:hover::after,
.c70fd1d78 a.c85d499b9::after {
    width: 100%;
}

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

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

.c29badc39.cc93bd9f4 .c2411ebc1 span {
    background: var(--color-text);
}

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

.c85a3d4d5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.c2e01765b:hover .c85a3d4d5 {
    transform: scale(1);
}

.c6e9f16c9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 36, 32, 0.6) 0%,
        rgba(44, 36, 32, 0.3) 50%,
        rgba(44, 36, 32, 0.5) 100%
    );
}

.cb044531a {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.cb044531a h1 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.cb044531a p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
}

.c76d54eed {
    display: inline-flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
}

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

/* Buttons */
.ccf636859 {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.c6ce0e216 {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.c6ce0e216:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 107, 0.4);
    color: var(--color-primary);
}

.ce87d0123 {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.ce87d0123:hover {
    background: var(--color-primary);
    color: var(--color-text);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 36, 32, 0.3);
    color: var(--color-primary);
}

/* Section Common */
.c6a233aeb {
    padding: 100px 5%;
}

.c5005230f {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
}

.c4e76b2fb {
    background: var(--color-bg-warm);
}

.c86a66edf {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.c86a66edf h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: inherit;
}

.c86a66edf p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.c5005230f .c86a66edf p {
    color: rgba(253, 251, 247, 0.7);
}

.ce7b38530 {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* Trust Section */
.cbc98488a {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.c0e14cbd6 {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-card);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.c0e14cbd6:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--color-shadow);
}

.c339b1640 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.c0e14cbd6 h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* Services Section */
.c7c3d4120 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ccca75467 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.ccca75467:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--color-shadow);
}

.c7de9598d {
    height: 240px;
    overflow: hidden;
}

.c7de9598d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ccca75467:hover .c7de9598d img {
    transform: scale(1.08);
}

.ce60c5c6f {
    padding: 30px;
}

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

.ce60c5c6f p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Cases Gallery */
.c4ad16e60 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.c7650cf63 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.c92c0661d {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(44, 36, 32, 0.9));
    color: var(--color-primary);
    transform: translateY(100%);
    transition: var(--transition);
}

.c7650cf63:hover .c92c0661d {
    transform: translateY(0);
}

.c92c0661d h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.c92c0661d p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Pain Points Section */
.c1b571ef4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ccbaeec3a {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ccbaeec3a img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cc888b3da {
    list-style: none;
}

.cc888b3da li {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cc888b3da li:last-child {
    border-bottom: none;
}

.c3f45fc17 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.ca2b26671 h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

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

/* Process Section */
.c7d02f4a5 {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

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

.c8909bb5d::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    width: 50%;
    height: 2px;
    background: var(--color-border);
}

.c8909bb5d:last-child::after {
    display: none;
}

.c8909bb5d::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--color-border);
}

.c8909bb5d:first-child::before {
    display: none;
}

.ce16530c0 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.c8909bb5d h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

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

/* Stats Counter */
.cbdccf360 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.c4f2f9e14 {
    text-align: center;
}

.c394ba547 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

.c19192988 {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

.c5005230f .c19192988 {
    color: rgba(253, 251, 247, 0.7);
}

/* CTA Section */
.c637df26e {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #3D3028 100%);
    color: var(--color-text-white);
}

.c637df26e h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.c637df26e p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.ca7a22e65 {
    margin-bottom: 20px;
}

.ca7a22e65 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.ca7a22e65 input,
.ca7a22e65 textarea,
.ca7a22e65 select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-card);
    transition: var(--transition);
}

.ca7a22e65 input:focus,
.ca7a22e65 textarea:focus,
.ca7a22e65 select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.1);
}

.ca7a22e65 textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.ce71c2a76 {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 60px 5% 30px;
}

.c04b5be05 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cde6714a5 h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.cde6714a5 p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
}

.cb3cfd362 h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.cb3cfd362 ul {
    list-style: none;
}

.cb3cfd362 ul li {
    margin-bottom: 10px;
}

.cb3cfd362 ul li a {
    color: rgba(253, 251, 247, 0.7);
    font-size: 0.9rem;
}

.cb3cfd362 ul li a:hover {
    color: var(--color-secondary);
}

.c870f3644 {
    text-align: center;
    padding-top: 30px;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Scroll Animations */
.c9c501221 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.c339bc013 {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.c339bc013.visible {
    opacity: 1;
    transform: translateX(0);
}

.c772e2780 {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.c772e2780.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

/* Quote Calculator */
.ca3db10af {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
}

.ca3db10af h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.cd80a60bd {
    text-align: center;
    padding: 30px;
    background: var(--color-bg-warm);
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.cd80a60bd .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

/* Carousel */
.c9358df70 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

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

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

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

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

.c2dfd3a3e.c85d499b9 {
    background: var(--color-secondary);
    transform: scale(1.2);
}

.c73749663 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.c73749663:hover {
    background: var(--color-secondary);
    color: white;
}

.c73749663.ccd8c26a0 {
    left: 20px;
}

.c73749663.c97245919 {
    right: 20px;
}

/* Page Header (for sub pages) */
.c0a3be59a {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cc6b2d00a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 36, 32, 0.7), rgba(44, 36, 32, 0.4));
}

.cdfc5350c {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-primary);
}

.cdfc5350c h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.cdfc5350c p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Breadcrumb */
.c3d9a628a {
    padding: 16px 5%;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.c3d9a628a a {
    color: var(--color-text-light);
}

.c3d9a628a a:hover {
    color: var(--color-secondary);
}

/* News/Article Cards */
.cd4441128 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ca6b6f0f0 {
    background: var(--color-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.ca6b6f0f0:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--color-shadow);
}

.c988e6fc2 {
    height: 200px;
    overflow: hidden;
}

.c988e6fc2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ca6b6f0f0:hover .c988e6fc2 img {
    transform: scale(1.05);
}

.c08ddf273 {
    padding: 24px;
}

.c2f181110 {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

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

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

/* Success Message */
.c58f65120 {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.c58f65120.show {
    display: block;
}

.c7ca780bb {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cbc98488a {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c7c3d4120 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c4ad16e60 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c04b5be05 {
        grid-template-columns: 1fr 1fr;
    }
    
    .cbdccf360 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .c70fd1d78 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-bg-dark);
        flex-direction: column;
        padding: 80px 40px;
        gap: 24px;
        transition: var(--transition);
    }
    
    .c70fd1d78.c85d499b9 {
        right: 0;
    }
    
    .c70fd1d78 a {
        color: var(--color-text-white);
        font-size: 1.1rem;
    }
    
    .c2411ebc1 {
        display: flex;
    }
    
    .cb044531a h1 {
        font-size: 2.2rem;
    }
    
    .cb044531a p {
        font-size: 1rem;
    }
    
    .c86a66edf h2 {
        font-size: 1.8rem;
    }
    
    .c7c3d4120 {
        grid-template-columns: 1fr;
    }
    
    .cbc98488a {
        grid-template-columns: 1fr;
    }
    
    .c4ad16e60 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c1b571ef4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .c7d02f4a5 {
        flex-direction: column;
        gap: 30px;
    }
    
    .c8909bb5d::after,
    .c8909bb5d::before {
        display: none;
    }
    
    .cbdccf360 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cd4441128 {
        grid-template-columns: 1fr;
    }
    
    .c04b5be05 {
        grid-template-columns: 1fr;
    }
    
    .c76d54eed {
        flex-direction: column;
        align-items: center;
    }
    
    .cdfc5350c h1 {
        font-size: 2rem;
    }
    
    .c1357e728 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cb044531a h1 {
        font-size: 1.8rem;
    }
    
    .c6a233aeb {
        padding: 60px 5%;
    }
    
    .c4ad16e60 {
        grid-template-columns: 1fr;
    }
    
    .ca3db10af {
        padding: 24px;
    }
}
