/* 关于我们页面样式 */

/* ====================
   页面专用变量
======================= */
:root {
    /* 使用主CSS中的颜色变量 */
    --about-gradient-primary: linear-gradient(135deg, #F0F8FF 0%, #E6F2FF 100%);
    --about-gradient-secondary: linear-gradient(135deg, rgba(0, 87, 194, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    --card-hover-transform: translateY(-5px);
    --icon-bg-color: rgba(0, 87, 194, 0.1);
    --card-border: 1px solid rgba(0, 87, 194, 0.05);
    --card-border-hover: 1px solid rgba(0, 87, 194, 0.1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ====================
   通用组件样式
======================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* ====================
   页面标题区域
======================= */
.about-hero-section {
    position: relative;
    padding: 20px 0 10px; /* 统一使用about.css的紧凑布局 */
    background: #F0F7FF;
}

/* 面包屑导航样式 */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
    margin-bottom: 10px; /* 统一使用about.css的边距 */
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumbs a {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumbs a:hover {
    color: #1D4ED8;
}

.breadcrumbs i.fa-home {
    margin-right: 5px;
    font-size: 14px;
}

.breadcrumbs i.fa-angle-right {
    font-size: 12px;
    color: #9CA3AF;
}

.breadcrumbs span {
    color: #374151;
    font-weight: 500;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 40px; /* 统一使用about.css的字号 */
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E40AF;
    line-height: 1.2;
}

.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2563EB;
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px; /* 统一使用about.css的字号 */
    color: #4B5563;
    margin-top: 20px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
/* ====================
   我们的选择部分
======================= */
.choice-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fff, #F0F8FF);
}

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

.lead-paragraph {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    font-weight: 500;
    text-align: center;
}

.choice-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.insight-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: var(--card-border);
    text-align: center;
}

.insight-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--card-border-hover);
}

.insight-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: var(--icon-bg-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.insight-icon i {
    font-size: 2.4rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.insight-card:hover .insight-icon {
    background-color: var(--primary);
}

.insight-card:hover .insight-icon i {
    color: white;
}

.insight-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

.choice-conclusion {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 4rem;
    color: var(--gray-dark);
}

/* ====================
   使命与愿景部分
======================= */
.mission-section {
    background: var(--about-gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.grid-decorator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 87, 194, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 87, 194, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 500;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.mission-statement {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: var(--card-border);
}

.mission-statement p {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.5;
}

.mission-vision {
    margin-top: 4rem;
}

.mission-vision h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}

.mission-vision h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: var(--card-border);
    text-align: center;
    height: 100%;
}

.vision-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--card-border-hover);
}

.vision-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: var(--icon-bg-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.vision-icon i {
    font-size: 2.4rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    background-color: var(--primary);
}

.vision-card:hover .vision-icon i {
    color: white;
}

.vision-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

/* ====================
   核心团队部分
======================= */
.team-section {
    padding: 80px 0;
    background: var(--about-gradient-primary);
    position: relative;
    overflow: hidden;
}

/* 创始人展示区域 - 全新设计 */
.founder-section {
    margin-bottom: 5rem;
    position: relative;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 创始人引言部分 */
.founder-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.founder-quote-mark {
    font-size: 120px;
    line-height: 1;
    color: rgba(0, 87, 194, 0.1);
    font-family: Georgia, serif;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.founder-main-quote {
    font-size: 3.2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

/* 创始人内容主体 */
.founder-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: start;
}

/* 左侧：照片和基本信息 */
.founder-image-side {
    position: sticky;
    top: 100px;
}

.founder-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.founder-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.founder-basic-info {
    text-align: center;
}

.founder-name {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.founder-social-links .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.founder-social-links .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 87, 194, 0.3);
}

/* 右侧：故事内容 */
.founder-story-side {
    padding-top: 0.5rem;
}

.story-paragraph {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: justify;
}

.story-paragraph.opening {
    font-size: 2rem;
    line-height: 1.8;
}

.story-highlight {
    color: var(--primary);
    font-weight: 600;
}

.story-paragraph em {
    font-style: normal;
    color: var(--primary);
    font-weight: 500;
}

/* 引言部分特殊样式 */
.story-quote-section {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(0, 87, 194, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--primary);
    opacity: 0.2;
    font-size: 3rem;
}

.story-inline-quote {
    font-size: 1.9rem;
    line-height: 1.7;
    color: var(--primary-dark);
    font-style: italic;
    margin: 0;
}

/* 信念部分 */
.founder-belief-section {
    margin-top: 4rem;
    text-align: center;
}

.belief-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 0 auto 2rem;
}

.founder-belief {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.6;
}

.belief-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* 联合创始人标题 */
.co-founders-header {
    text-align: center;
    margin-bottom: 3rem;
}

.co-founders-header h3 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.co-founders-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

/* 联合创始人网格 */
.co-founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 通用团队成员样式 */
.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    height: 100%;
    border: var(--card-border);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--card-border-hover);
}

.team-member:hover::before {
    transform: scaleX(1);
}

/* 联合创始人卡片样式调整 */
.co-founder {
    display: flex;
    flex-direction: column;
}

.co-founder .member-photo {
    height: 280px;
}

/* 成员照片 */
.member-photo {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

/* 成员信息 */
.member-name {
    font-size: 2.2rem;
    margin: 2rem 2rem 0.5rem;
    color: var(--primary-dark);
}

.name-cn {
    font-size: 1.8rem;
    color: #666;
    margin-left: 0.5rem;
}

.member-title {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 2rem 1rem;
    font-weight: 500;
}

.member-bio {
    padding: 0 2rem;
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex: 1;
}

/* 社交链接 */
.member-social {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem;
    margin-top: auto;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-bg-color);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 87, 194, 0.2);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-image-side {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-main-quote {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .co-founders-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .founder-main-quote {
        font-size: 2rem;
    }
    
    .story-paragraph {
        font-size: 1.6rem;
    }
    
    .story-paragraph.opening {
        font-size: 1.8rem;
    }
    
    .founder-belief {
        font-size: 2rem;
    }
}

/* ====================
   时间线部分
======================= */
.timeline-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 15px;
    right: -10px;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
    right: auto;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    background: var(--primary);
    border-color: white;
}

.timeline-date {
    position: absolute;
    width: 150px;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    top: 0;
    right: -85px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -85px;
    right: auto;
}

.timeline-item:hover .timeline-date {
    transform: translateY(-5px);
    box-shadow: 0 7px 14px rgba(0, 87, 194, 0.2);
}

.timeline-content {
    background: var(--about-gradient-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: var(--card-border);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--card-border-hover);
}

.timeline-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.timeline-content p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* ====================
   合作伙伴部分
======================= */
.partners-section {
    padding: 80px 0;
    background: var(--about-gradient-primary);
    position: relative;
    overflow: hidden;
}

.partners-categories {
    position: relative;
    z-index: 1;
}

.partner-category {
    margin-bottom: 3rem;
}

.partner-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-category h3 i {
    margin-right: 0.5rem;
    color: var(--primary);
}

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

.partner-logo {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: var(--card-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--card-border-hover);
}

.partner-logo:hover::after {
    transform: scaleX(1);
}

.partner-logo img {
    max-width: 80%;
    max-height: 60%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ====================
   CTA区域
======================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, white 0%, #F0F8FF 100%);
    position: relative;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* ====================
   渐变文字样式
======================= */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.love-gradient-text {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB870 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================
   动画类
======================= */
.animate-slide-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ====================
   响应式样式
======================= */
@media (max-width: 1200px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item, 
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-left: 0;
    }
    
    .timeline-date, 
    .timeline-item:nth-child(even) .timeline-date {
        width: 120px;
        left: 80px;
        right: auto;
        top: 0;
    }
    
    .timeline-item::before, 
    .timeline-item:nth-child(even)::before {
        left: 20px;
        right: auto;
    }
    
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .lead-text, 
    .lead-paragraph {
        font-size: 1.8rem;
    }
    
    .mission-statement p {
        font-size: 1.8rem;
    }
    
    .choice-insights {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 团队部分响应式 */
    .co-founders-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .co-founder .member-photo {
        height: 300px;
    }
    
    .co-founders-header h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .partners-logo-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumbs {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-slide-up {
        opacity: 1;
        transform: translateY(0);
    }
}