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

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

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

.c062b0b0d {
    text-align: center;
}

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

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

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

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

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

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

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

.c564d9541 .cdfbfeee9::before { left: 0; }
.c564d9541 .cdfbfeee9::after { right: 0; }

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

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

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

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

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

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

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

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

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

.cf89002ab a:hover,
.cf89002ab a.c86194bcf {
    color: var(--primary);
}

.cf89002ab a:hover::after,
.cf89002ab a.c86194bcf::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.ce14fd587 h1 .c63c39323 {
    color: var(--primary);
    display: block;
}

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

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

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

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

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

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

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

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

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

.c914e4808 {
    padding: 1.5rem;
}

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

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

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

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

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

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

.c8f5ab4e6:hover .c1d8ab4c1 {
    transform: scale(1.05);
}

.cfd1c203e {
    padding: 2rem;
}

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

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

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

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

.c8f5ab4e6 .cb27b6332:hover {
    gap: 1rem;
}

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

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

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

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

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

.c84e352d3:hover .ca52b82f0 {
    transform: translateY(0);
}

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

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

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

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

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

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

.c0a06c0f8 .cf31d563f {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

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

.c0a06c0f8 .cf7e954aa h4 {
    color: var(--primary);
}

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

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

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

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

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

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

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

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

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

.c83b9cc08 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c425e1563 {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8a4b17b9 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.cbcf5faa8.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 */
.cfcc9a1c3 {
    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 */
.c7cf47af6 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c7cf47af6.show {
    display: block;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .cec2f2152 {
        grid-template-columns: 1fr 1fr;
    }
    
    .ccfdcb602::before {
        left: 30px;
    }
    
    .c841797b0,
    .c841797b0:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .c2fdb6a2e {
        width: 100%;
    }
    
    .cd301b225 {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .cf89002ab {
        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);
    }
    
    .cf89002ab.c86194bcf {
        right: 0;
    }
    
    .c977df82a {
        display: flex;
    }
    
    .c8b4b2e64 {
        display: none;
    }
    
    .c456f1992 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .c1cce7324 {
        flex-direction: column;
    }
    
    .c1cce7324 .c9d1ab8f6 {
        text-align: center;
        justify-content: center;
    }
    
    .cd5632d92 {
        grid-template-columns: 1fr;
    }
    
    .c4ebf8548 {
        grid-template-columns: 1fr;
    }
    
    .c43a979e5 {
        grid-template-columns: 1fr;
    }
    
    .cec2f2152 {
        grid-template-columns: 1fr;
    }
    
    .ccba5639d {
        flex-direction: column;
        text-align: center;
    }
    
    .c9fce0ac0 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c7d7fe272 {
        grid-template-columns: 1fr;
    }
}

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