/* ============================================
   古典油画修复与欧洲艺术品回流交易 - 主样式表
   色彩体系：古典画布黄 + 颜料裂纹褐
   ============================================ */

/* CSS Variables */
:root {
    --primary: #C8A951;          /* 古典画布黄 */
    --primary-dark: #A68B3C;
    --primary-light: #E8D48B;
    --secondary: #6B4423;        /* 颜料裂纹褐 */
    --secondary-light: #8B5E3C;
    --bg-dark: #1A1410;
    --bg-medium: #2C2218;
    --bg-light: #3D2F22;
    --card-bg: rgba(44, 34, 24, 0.85);
    --card-bg-hover: rgba(60, 46, 32, 0.95);
    --text-primary: #F5F0E8;
    --text-secondary: #C4B89A;
    --text-muted: #8B7D6B;
    --border: rgba(200, 169, 81, 0.2);
    --border-hover: rgba(200, 169, 81, 0.5);
    --shadow: rgba(0, 0, 0, 0.4);
    --gradient-gold: linear-gradient(135deg, #C8A951, #E8D48B, #C8A951);
    --gradient-dark: linear-gradient(180deg, #1A1410, #2C2218);
    --font-heading: 'Noto Serif SC', 'Georgia', serif;
    --font-body: 'Noto Sans SC', 'Helvetica Neue', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 8px;
    --radius-lg: 16px;
}

/* 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(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Loading Animation */
.cf4cc18d7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.cf6275dbc {
    text-align: center;
}

.cd8d91fd8 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 4px;
    animation: pulse 1.5s ease-in-out infinite;
}

.cff507ce7 {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.cff507ce7::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

/* Container */
.cec3d5702 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 4rem);
}

/* Section */
.cb9382263 {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.c700e20d3 {
    text-align: center;
    margin-bottom: 4rem;
}

.c700e20d3 .c9c5ce1d9 {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.c700e20d3 .c9c5ce1d9::before,
.c700e20d3 .c9c5ce1d9::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.c700e20d3 .c9c5ce1d9::before { left: 0; }
.c700e20d3 .c9c5ce1d9::after { right: 0; }

.c700e20d3 h2 {
    margin-bottom: 1rem;
}

.c700e20d3 .caf990a94 {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navigation */
.c04776566 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.c04776566.ced7cb761 {
    background: rgba(26, 20, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px var(--shadow);
}

.cebf66b94 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c2a914108 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.c574db1b2 {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.c574db1b2 a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

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

.c574db1b2 a:hover,
.c574db1b2 a.cb18f9c78 {
    color: var(--primary);
}

.c574db1b2 a:hover::after,
.c574db1b2 a.cb18f9c78::after {
    width: 100%;
}

.cba35d8ff {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.cb8b23775 {
    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 {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.c023d909f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(26, 20, 16, 0.9) 0%,
        rgba(26, 20, 16, 0.6) 50%,
        rgba(26, 20, 16, 0.3) 100%
    );
}

.c9c6f0241 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: clamp(2rem, 5vw, 8rem);
}

.ccd14e06c {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: var(--radius);
}

.cc2cc7197 h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.cc2cc7197 h1 .c26365337 {
    color: var(--primary);
    display: block;
}

.c786dc039 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.c08b984bb {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.cd154917c {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

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

.cf4122503:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 81, 0.3);
    color: var(--bg-dark);
}

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

.cc92068c9:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Trust Section */
.c41aeccfb {
    background: var(--bg-medium);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.c921ae8c2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.cc6bb8cb3 {
    padding: 1.5rem;
}

.c7f29afce {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Services Section */
.c2c9d28c5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ce92559d4 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.ce92559d4:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cfa300e44 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.ce92559d4:hover .cfa300e44 {
    transform: scale(1.05);
}

.c459a642b {
    padding: 2rem;
}

.c34fb1d0e {
    width: 50px;
    height: 50px;
    background: rgba(200, 169, 81, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.ce92559d4 h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ce92559d4 p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.ce92559d4 .c063e17c4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.ce92559d4 .c063e17c4:hover {
    gap: 1rem;
}

/* Cases Gallery */
.c4ac60c8e {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.c7fa1483b {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

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

.c5fd58edd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.95), transparent);
    transform: translateY(30%);
    transition: var(--transition);
}

.c7fa1483b:hover .c5fd58edd {
    transform: translateY(0);
}

.c5fd58edd h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.ce4912ef0 {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(200, 169, 81, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

/* Pain Points Section */
.cee698fe2 {
    background: var(--bg-medium);
}

.cdd2d4d75 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.c2d859770 {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.c2d859770:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.c2d859770 .cf46b60d0 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.c2d859770 h4 {
    color: #E57373;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.c2d859770 .c1aabe041 {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.c2d859770 .c1aabe041 h4 {
    color: var(--primary);
}

/* Process Section */
.cdb720cf4 {
    position: relative;
    padding: 2rem 0;
}

.cdb720cf4::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.c9aa9e961 {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.c9aa9e961:nth-child(odd) {
    flex-direction: row;
}

.c9aa9e961:nth-child(even) {
    flex-direction: row-reverse;
}

.cbc9e0ced {
    width: 45%;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.cbc9e0ced:hover {
    border-color: var(--primary);
}

.c5a063593 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    z-index: 2;
}

/* Quote Tool */
.ce17d75b3 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.ce17d75b3 h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.c96946fa2 {
    margin-bottom: 1.5rem;
}

.c96946fa2 label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.c7e408910 {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.c7e408910:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

.c7e408910::placeholder {
    color: var(--text-muted);
}

select.c7e408910 {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A951' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

textarea.c7e408910 {
    resize: vertical;
    min-height: 120px;
}

.cea6aafd3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* CTA Section */
.c18c2924c {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 5rem 0;
}

.c18c2924c h2 {
    margin-bottom: 1rem;
}

.c18c2924c p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Footer */
.ce594c21c {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.c10d053f4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.c3e32469c .c5589e3a3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.c3e32469c p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.ce594c21c h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.c8082932e {
    list-style: none;
}

.c8082932e li {
    margin-bottom: 0.8rem;
}

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

.c8082932e a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.cfc27b9a6 {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

.c1a652cba {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.7);
}

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

.c5d27d6c8 h1 {
    margin-bottom: 1rem;
}

.c65fc9059 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

/* Cards Grid */
.c597456f1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.c16b0edf2 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.c16b0edf2:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.cc7d232f0 {
    padding: 1.5rem;
}

.c16b0edf2 .c8cd5d4d8 {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.c16b0edf2 h4 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.c16b0edf2 p {
    font-size: 0.9rem;
}

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

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

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

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

.cae9fa547 {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
}

.cd1b90982 {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.c29bd9b68 {
    font-variant-numeric: tabular-nums;
}

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

/* Success Message */
.cf55d0f90 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.cf55d0f90.show {
    display: block;
}

.cf55d0f90 .c7095966c {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Filter Tabs */
.cb79d7f9f {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.c42ecedad {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c42ecedad:hover,
.c42ecedad.cb18f9c78 {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .c10d053f4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .cdb720cf4::before {
        left: 30px;
    }
    
    .c9aa9e961,
    .c9aa9e961:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .cbc9e0ced {
        width: 100%;
    }
    
    .c5a063593 {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .c574db1b2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }
    
    .c574db1b2.cb18f9c78 {
        right: 0;
    }
    
    .ceb8bf309 {
        display: flex;
    }
    
    .cba35d8ff {
        display: none;
    }
    
    .c9c6f0241 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .c08b984bb {
        flex-direction: column;
    }
    
    .c08b984bb .cd154917c {
        text-align: center;
        justify-content: center;
    }
    
    .c2c9d28c5 {
        grid-template-columns: 1fr;
    }
    
    .c4ac60c8e {
        grid-template-columns: 1fr;
    }
    
    .cea6aafd3 {
        grid-template-columns: 1fr;
    }
    
    .c10d053f4 {
        grid-template-columns: 1fr;
    }
    
    .cfc27b9a6 {
        flex-direction: column;
        text-align: center;
    }
    
    .c921ae8c2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cdd2d4d75 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .c921ae8c2 {
        grid-template-columns: 1fr;
    }
    
    .c528d51de img {
        height: 300px;
    }
}
