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

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

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

.caae96d71 {
    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 */
.cd60255ac {
    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);
}

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

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

.cd60255ac.cd2e03e4c .cee2ada3a {
    color: var(--color-text);
}

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

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

.cd60255ac.cd2e03e4c .ca2b7dff9 a {
    color: var(--color-text);
}

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

.ca2b7dff9 a:hover::after,
.ca2b7dff9 a.ceebd2360::after {
    width: 100%;
}

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

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

.cd60255ac.cd2e03e4c .cab493208 span {
    background: var(--color-text);
}

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

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

.cb0648818:hover .c0786c7f0 {
    transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbf3b7c1f .c1ec3ee7a p {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

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

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

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

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

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

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

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

.c829d8fd8:hover .c823d3d0b img {
    transform: scale(1.08);
}

.c4afb7034 {
    padding: 30px;
}

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

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

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

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

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

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

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

.ca01abc55:hover .cdff281e3 {
    transform: translateY(0);
}

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

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

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

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

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

.c5a6e4fe2 {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce2267aaa {
    text-align: center;
}

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

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

.cbf3b7c1f .cc3016d5f {
    color: rgba(253, 251, 247, 0.7);
}

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

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

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

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

.c3e5d986c {
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.cf8b25156 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

.c3427a617.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 */
.cecf07bce {
    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);
}

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

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

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

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

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

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

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

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

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

.c7f50ac6b.ceebd2360 {
    background: var(--color-secondary);
    transform: scale(1.2);
}

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

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

.cf741ee8b.cc9102618 {
    left: 20px;
}

.cf741ee8b.c8421d6ab {
    right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c97ebdcae:hover .c6ecc61c5 img {
    transform: scale(1.05);
}

.ce22d00aa {
    padding: 24px;
}

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

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

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

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

.cb8882b10.show {
    display: block;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .c2b2114ed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c44f9ab92 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c9d06a441 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cdb1afa66 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c9bece658 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ca2b7dff9 {
        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);
    }
    
    .ca2b7dff9.ceebd2360 {
        right: 0;
    }
    
    .ca2b7dff9 a {
        color: var(--color-text-white);
        font-size: 1.1rem;
    }
    
    .cab493208 {
        display: flex;
    }
    
    .ccdaa5a83 h1 {
        font-size: 2.2rem;
    }
    
    .ccdaa5a83 p {
        font-size: 1rem;
    }
    
    .c1ec3ee7a h2 {
        font-size: 1.8rem;
    }
    
    .c44f9ab92 {
        grid-template-columns: 1fr;
    }
    
    .c2b2114ed {
        grid-template-columns: 1fr;
    }
    
    .c9d06a441 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cc1f3941c {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .c0f791b1f {
        flex-direction: column;
        gap: 30px;
    }
    
    .cbc06b42b::after,
    .cbc06b42b::before {
        display: none;
    }
    
    .c9bece658 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c1461d815 {
        grid-template-columns: 1fr;
    }
    
    .cdb1afa66 {
        grid-template-columns: 1fr;
    }
    
    .cb30237cd {
        flex-direction: column;
        align-items: center;
    }
    
    .c92a5fdac h1 {
        font-size: 2rem;
    }
    
    .cdc926843 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .ccdaa5a83 h1 {
        font-size: 1.8rem;
    }
    
    .caed157cd {
        padding: 60px 5%;
    }
    
    .c9d06a441 {
        grid-template-columns: 1fr;
    }
    
    .cecf07bce {
        padding: 24px;
    }
}
