/* 
 * 视频创作与优化服务平台 - 主样式表
 * 优化移动端体验，响应式设计
 */

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --secondary-color: #1d3557;
    --accent-color: #f4a261;
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --bg-color: #f8f9fa;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
}

.main-nav {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-icon {
    width: 24px;
    height: 3px;
    background: var(--secondary-color);
    position: relative;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
    transition: var(--transition);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu-btn.active .menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(230, 57, 70, 0.08);
}

.nav-link.highlight {
    color: var(--accent-color);
}

.nav-link.cta-btn {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    margin-top: 0.5rem;
}

.nav-link.cta-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.875rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-light);
}

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

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(29, 53, 87, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
}

.hero-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-width: 160px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Brand Section */
.brand-section {
    background: var(--white);
}

.brand-content {
    display: grid;
    gap: 2rem;
}

.brand-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.brand-image {
    margin: 0;
}

.brand-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.brand-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Video Categories */
.video-categories {
    background: var(--bg-color);
}

.category-grid {
    display: grid;
    gap: 1.5rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    margin: 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.25rem;
}

.card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.card-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.rating {
    font-size: 0.875rem;
    color: var(--accent-color);
}

.rating strong {
    font-size: 1rem;
}

/* Video Player Section */
.video-player-section {
    background: var(--secondary-color);
    color: var(--white);
}

.video-player-section .section-title {
    color: var(--white);
}

.video-player-section .section-desc {
    color: rgba(255,255,255,0.8);
}

.video-showcase {
    display: grid;
    gap: 2rem;
}

.video-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.video-info p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

/* Responsible Section */
.responsible-section {
    background: var(--white);
}

.responsible-content {
    display: grid;
    gap: 2rem;
}

.responsible-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.responsible-item p {
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.resource-list {
    margin-top: 1rem;
}

.resource-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.resource-list a {
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--bg-color);
}

.about-content {
    display: grid;
    gap: 2.5rem;
}

.about-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.team-image {
    margin: 1.5rem 0;
}

.team-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.team-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.why-list {
    margin-top: 1rem;
}

.why-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Payment Section */
.payment-section {
    background: var(--white);
}

.payment-content {
    display: grid;
    gap: 1.5rem;
}

.payment-method {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-color);
}

.payment-method.highlight-payment {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.payment-method.highlight-payment h3 {
    color: var(--white);
}

.payment-method h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.payment-icons {
    margin: 1.5rem 0 0;
    text-align: center;
}

.payment-icons img {
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

/* Producer Section */
.producer-section {
    background: var(--bg-color);
}

.producer-content {
    display: grid;
    gap: 2rem;
}

.license-info h3,
.compliance-statement h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.license-info p,
.compliance-statement p {
    margin-bottom: 1rem;
}

.license-badge {
    margin: 0;
    text-align: center;
}

.license-badge img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.license-badge figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Support Section */
.support-section {
    background: var(--white);
}

.support-grid {
    display: grid;
    gap: 1.5rem;
}

.support-item {
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.support-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-color);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info strong {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
}

.reviewer-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-rating .stars {
    color: var(--accent-color);
    font-size: 1rem;
}

.review-content {
    font-size: 0.9375rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 1rem;
}

.footer-desc {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
}

.footer-column address p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-license {
    margin-bottom: 1rem;
}

.footer-license p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.footer-payment {
    margin: 1rem 0;
}

.footer-payment img {
    margin: 0 auto;
    opacity: 0.8;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.copyright a {
    color: rgba(255,255,255,0.7);
}

/* Inner Pages Common Styles */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.page-content {
    padding: 3rem 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.content-wrapper h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.content-image {
    margin: 2rem 0;
}

.content-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.content-image figcaption {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* App Download Page */
.app-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.app-hero h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.app-hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    min-width: 200px;
    justify-content: center;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.app-features {
    padding: 3rem 0;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (min-width: 480px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }
    
    .app-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background: transparent;
        align-items: center;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-link.cta-btn {
        margin-top: 0;
        margin-left: 0.5rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .brand-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .video-showcase {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
    
    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-logo {
        margin: 0 0 1rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 2fr;
    }
    
    section {
        padding: 5rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-section,
    .video-player-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}
