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

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

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

.c71a23694 {
    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 */
.caab64577 {
    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);
}

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

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

.caab64577.c358658a5 .c534eafb2 {
    color: var(--color-text);
}

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

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

.caab64577.c358658a5 .c8a6b190a a {
    color: var(--color-text);
}

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

.c8a6b190a a:hover::after,
.c8a6b190a a.c2208f98e::after {
    width: 100%;
}

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

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

.caab64577.c358658a5 .ce4555497 span {
    background: var(--color-text);
}

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

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

.cfe732d9e:hover .cee226772 {
    transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd6b2a0a4 .c87109c58 p {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

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

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

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

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

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

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

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

.ced2f8c0e:hover .ca4cb3340 img {
    transform: scale(1.08);
}

.cabb1cf17 {
    padding: 30px;
}

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

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

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

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

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

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

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

.ce2f8e15e:hover .cac09d39f {
    transform: translateY(0);
}

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

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

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

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

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

.c88d6c667 {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c9969a150 {
    text-align: center;
}

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

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

.cd6b2a0a4 .c8cd7a192 {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

.c015964a2 {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.cd43f3c27 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

.c0eb43ae1.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 */
.cef6202a5 {
    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);
}

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

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

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

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

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

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

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

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

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

.c1522a43c.c2208f98e {
    background: var(--color-secondary);
    transform: scale(1.2);
}

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

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

.cf3edd2a5.c47c432fc {
    left: 20px;
}

.cf3edd2a5.ccf4f12eb {
    right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cea862e83:hover .c2795cabe img {
    transform: scale(1.05);
}

.ccb838010 {
    padding: 24px;
}

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

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

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

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

.cdd61c0f7.show {
    display: block;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .c56bcec1d {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c5fa1d948 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cc77fb98d {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c0b3cfbcc {
        grid-template-columns: 1fr 1fr;
    }
    
    .c4e1bd4f7 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .c8a6b190a {
        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);
    }
    
    .c8a6b190a.c2208f98e {
        right: 0;
    }
    
    .c8a6b190a a {
        color: var(--color-text-white);
        font-size: 1.1rem;
    }
    
    .ce4555497 {
        display: flex;
    }
    
    .c8f5955ba h1 {
        font-size: 2.2rem;
    }
    
    .c8f5955ba p {
        font-size: 1rem;
    }
    
    .c87109c58 h2 {
        font-size: 1.8rem;
    }
    
    .c5fa1d948 {
        grid-template-columns: 1fr;
    }
    
    .c56bcec1d {
        grid-template-columns: 1fr;
    }
    
    .cc77fb98d {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cee5b0f4d {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .c9f7deba2 {
        flex-direction: column;
        gap: 30px;
    }
    
    .c7f98abb4::after,
    .c7f98abb4::before {
        display: none;
    }
    
    .c4e1bd4f7 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c902d78fd {
        grid-template-columns: 1fr;
    }
    
    .c0b3cfbcc {
        grid-template-columns: 1fr;
    }
    
    .c984ed69f {
        flex-direction: column;
        align-items: center;
    }
    
    .cc8090d02 h1 {
        font-size: 2rem;
    }
    
    .c52f08d88 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c8f5955ba h1 {
        font-size: 1.8rem;
    }
    
    .c1ab0cbc9 {
        padding: 60px 5%;
    }
    
    .cc77fb98d {
        grid-template-columns: 1fr;
    }
    
    .cef6202a5 {
        padding: 24px;
    }
}
