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

/* 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 */
.cd8a54bc5 {
    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;
}

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

.cb1a64f8d {
    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 */
.cb9d62fab {
    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);
}

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

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

.cb9d62fab.c276e3a54 .c5112d414 {
    color: var(--color-text);
}

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

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

.cb9d62fab.c276e3a54 .c564e8600 a {
    color: var(--color-text);
}

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

.c564e8600 a:hover::after,
.c564e8600 a.c69a65eb9::after {
    width: 100%;
}

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

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

.cb9d62fab.c276e3a54 .cb9ba94a3 span {
    background: var(--color-text);
}

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

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

.c1c2738bd:hover .c481520ac {
    transform: scale(1);
}

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

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

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

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

.cfbc4d770 {
    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 */
.c81c8818f {
    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;
}

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

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

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

.cf89ea5f8: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 */
.cb8a18198 {
    padding: 100px 5%;
}

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

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

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

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

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

.cd4df5252 .c35679702 p {
    color: rgba(253, 251, 247, 0.7);
}

.c0a74ad2d {
    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 */
.c2e4e64df {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

.cef6e2cd5:hover .cd436117d img {
    transform: scale(1.08);
}

.c5e83f9ae {
    padding: 30px;
}

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

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

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

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

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

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

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

.ca182f20c:hover .caad0689f {
    transform: translateY(0);
}

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

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

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

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

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

.c5ddaafc8 {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c7c06c4dc {
    text-align: center;
}

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

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

.cd4df5252 .c3acb3027 {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

.c86fb834b {
    margin-bottom: 20px;
}

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

.c86fb834b input,
.c86fb834b textarea,
.c86fb834b 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);
}

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

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

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

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

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

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

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

.ca537e200 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

.c41ebe095.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 */
.c01376095 {
    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);
}

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

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

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

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

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

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

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

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

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

.cb8562da9.c69a65eb9 {
    background: var(--color-secondary);
    transform: scale(1.2);
}

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

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

.c8df2b563.c3f94ef17 {
    left: 20px;
}

.c8df2b563.c024ebc24 {
    right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c42f80fef:hover .c889365f3 img {
    transform: scale(1.05);
}

.cb17937d7 {
    padding: 24px;
}

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

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

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

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

.c64e9706e.show {
    display: block;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .c2e4e64df {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cf25e21f5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c35995a04 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c464840fc {
        grid-template-columns: 1fr 1fr;
    }
    
    .c9a47dcad {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .c564e8600 {
        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);
    }
    
    .c564e8600.c69a65eb9 {
        right: 0;
    }
    
    .c564e8600 a {
        color: var(--color-text-white);
        font-size: 1.1rem;
    }
    
    .cb9ba94a3 {
        display: flex;
    }
    
    .cdf52faf6 h1 {
        font-size: 2.2rem;
    }
    
    .cdf52faf6 p {
        font-size: 1rem;
    }
    
    .c35679702 h2 {
        font-size: 1.8rem;
    }
    
    .cf25e21f5 {
        grid-template-columns: 1fr;
    }
    
    .c2e4e64df {
        grid-template-columns: 1fr;
    }
    
    .c35995a04 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c5a71eb46 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .c0c112d63 {
        flex-direction: column;
        gap: 30px;
    }
    
    .ce1ef2257::after,
    .ce1ef2257::before {
        display: none;
    }
    
    .c9a47dcad {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c8c3e0f19 {
        grid-template-columns: 1fr;
    }
    
    .c464840fc {
        grid-template-columns: 1fr;
    }
    
    .cfbc4d770 {
        flex-direction: column;
        align-items: center;
    }
    
    .c58cc44f9 h1 {
        font-size: 2rem;
    }
    
    .caa65e19b img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cdf52faf6 h1 {
        font-size: 1.8rem;
    }
    
    .cb8a18198 {
        padding: 60px 5%;
    }
    
    .c35995a04 {
        grid-template-columns: 1fr;
    }
    
    .c01376095 {
        padding: 24px;
    }
}
