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

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

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

.c62607910 {
    text-align: center;
}

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

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

.cede8b284::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 */
.c744aa5ca {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 4rem);
}

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

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

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

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

.c9ba40c5d .cacc6d12a::before { left: 0; }
.c9ba40c5d .cacc6d12a::after { right: 0; }

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

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

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

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

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

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

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

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

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

.ce9c28716 a:hover,
.ce9c28716 a.ce5061931 {
    color: var(--primary);
}

.ce9c28716 a:hover::after,
.ce9c28716 a.ce5061931::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.c4e5690b6 h1 .cc7082fa4 {
    color: var(--primary);
    display: block;
}

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

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

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

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

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

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

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

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

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

.cdb598c95 {
    padding: 1.5rem;
}

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

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

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

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

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

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

.c9241c3ad:hover .cb0fb0117 {
    transform: scale(1.05);
}

.ca2c5bade {
    padding: 2rem;
}

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

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

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

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

.c9241c3ad .ca6e1524e:hover {
    gap: 1rem;
}

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

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

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

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

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

.cd2968405:hover .c201c0cde {
    transform: translateY(0);
}

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

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

.c42bf3c1d {
    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 */
.c28fc636f {
    background: var(--bg-medium);
}

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

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

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

.c176aeea7 .ccef54c88 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

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

.c176aeea7 .c80d021ed h4 {
    color: var(--primary);
}

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

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

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

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

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

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

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

.cd867f30b {
    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 */
.ce764f43c {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.c0c6fd10d {
    margin-bottom: 1.5rem;
}

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

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

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

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

select.c129580f9 {
    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.c129580f9 {
    resize: vertical;
    min-height: 120px;
}

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

/* CTA Section */
.caca04420 {
    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;
}

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

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

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

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

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

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

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

.cf8d3c356 {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc6b5433a {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c83d24ff9.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 */
.c06453d7d {
    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 */
.c761de4a5 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c761de4a5.show {
    display: block;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .ce78cdb01 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c0c67fa96::before {
        left: 30px;
    }
    
    .c33300463,
    .c33300463:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .c228ab9b5 {
        width: 100%;
    }
    
    .cd867f30b {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .ce9c28716 {
        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);
    }
    
    .ce9c28716.ce5061931 {
        right: 0;
    }
    
    .c168e65f9 {
        display: flex;
    }
    
    .cf76f6ac6 {
        display: none;
    }
    
    .c75eec7d6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .c10852873 {
        flex-direction: column;
    }
    
    .c10852873 .c226c62de {
        text-align: center;
        justify-content: center;
    }
    
    .c5fb40100 {
        grid-template-columns: 1fr;
    }
    
    .c2bbab771 {
        grid-template-columns: 1fr;
    }
    
    .c559a2769 {
        grid-template-columns: 1fr;
    }
    
    .ce78cdb01 {
        grid-template-columns: 1fr;
    }
    
    .cf695c257 {
        flex-direction: column;
        text-align: center;
    }
    
    .c845f9e81 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c5f9b161c {
        grid-template-columns: 1fr;
    }
}

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