/* 英雄区域样式 */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 66, 210, 0.5) 0%, rgba(22, 93, 255, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content-slides {
    position: relative;
    height: 100%;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero-content.active {
    opacity: 1;
    visibility: visible;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 英雄区域响应式调整 */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-content {
        top: 25%;
    }
}

.hero-title .text-blue-600 {
    color: var(--secondary);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* 立即咨询按钮样式 */
.hero-section .primary-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-section .primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

/* 按钮响应式调整 */
@media (max-width: 768px) {
    .hero-section .primary-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section .primary-button {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--animation-duration) var(--animation-ease);
}

.slider-dot.active {
    background-color: white;
    width: 30px;
    border-radius: 6px;
}

/* 服务区域样式 */
.services-section {
    padding: 120px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* 服务区域响应式调整 */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--animation-duration) var(--animation-ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    transform: scaleY(0);
    transition: transform var(--animation-duration) var(--animation-ease);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleY(1);
}

/* 服务卡片可见性动画 */
.service-card {
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-icon-container {
    width: 64px;
    height: 64px;
    background-color: rgba(22, 93, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* 服务图标 - 使用Font Awesome */
.service-icon {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    font-size: 22px;
    line-height: 36px !important;
    margin: auto;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* 数据统计样式 */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.stat-description {
    font-size: 16px;
    opacity: 0.8;
}

/* 数据统计响应式调整 */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stat-number {
        font-size: 32px;
    }
    .stats-section {
        padding: 60px 0;
    }
}

/* 案例展示样式 */
.cases-section {
    padding: 120px 0;
    background-color: var(--slate-100);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* 案例展示响应式调整 */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 80px 0;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.case-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--animation-duration) var(--animation-ease);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.case-image {
    width: 100%;
    height: 100%;
    background-color: var(--slate-200);
    transition: transform 0.5s ease;
}

.case-image-1 {
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.8) 0%, rgba(14, 66, 210, 0.8) 100%);
}

.case-image-2 {
    background: linear-gradient(135deg, rgba(15, 198, 194, 0.8) 0%, rgba(13, 168, 164, 0.8) 100%);
}

.case-image-3 {
    background: linear-gradient(135deg, rgba(255, 125, 0, 0.8) 0%, rgba(230, 106, 0, 0.8) 100%);
}

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

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity var(--animation-duration) var(--animation-ease);
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-content {
    padding: 24px;
}

.case-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    background-color: rgba(22, 93, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.case-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.case-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.case-card-link:hover .case-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-card-link:hover .case-image {
    transform: scale(1.05);
}

.case-card-link:hover .case-overlay {
    opacity: 1;
}

/* 案例卡片可见性动画 */
.case-card {
    opacity: 0;
    transform: translateY(20px);
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cases-button-container {
    text-align: center;
}

/* 技术实力样式 */
.tech-section {
    padding: 120px 0;
    background-color: var(--white);
}

.tech-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.tech-chart-container {
    width: 100%;
    height: 400px;
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-right {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.tech-feature:hover {
    background-color: var(--light-gray);
}

/* 技术特点图标 - 使用Font Awesome */
.tech-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(22, 93, 255, 0.25);
    border-radius: 12px;
    margin-right: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    line-height: 48px !important;
    text-align: center;
}

.tech-feature-content {
    flex-grow: 1;
}

.tech-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.tech-feature-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* 技术实力区域响应式调整 */
@media (max-width: 1200px) {
    .tech-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .tech-section {
        padding: 80px 0;
    }

    .tech-content {
        flex-direction: column;
        align-items: center;
    }

    .tech-left,
    .tech-right {
        width: 100%;
        max-width: 100%;
    }

    .tech-chart-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .tech-section {
        padding: 80px 0;
    }

    .tech-chart-container {
        height: 300px;
        padding: 15px;
    }

    .tech-feature {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .tech-feature-icon {
        margin-right: 0;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .tech-chart-container {
        height: 250px;
        padding: 10px;
    }
}

/* 关于我们样式 */
.about-section {
    padding: 120px 0;
    background-color: var(--slate-100);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    min-width: 300px;
    width: 50%;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    flex: 1;
    min-width: 300px;
    width: 50%;
}

.about-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: flex-start;
}

/* 企业价值观图标 - 使用Font Awesome */
.value-icon {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    text-align: center;
    background-color: rgba(22, 93, 255, 0.1);
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.value-content {
    flex-grow: 1;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-description {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* 关于我们区域响应式调整 */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-image-container {
        height: 400px;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-container {
        height: 300px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-image-container {
        height: 250px;
    }
}

/* 客户评价样式 */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
}

.testimonial-content {
    background-color: var(--slate-100);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* 客户评价引用符号 - 使用Font Awesome */
.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(22, 93, 255, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    line-height: 40px;
    text-align: center;
}

.testimonial-text {
    font-size: 18px;
    color: var(--slate-800);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-left: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--slate-200);
    margin-right: 20px;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: var(--slate-600);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* 滑块控制图标 - 使用Font Awesome */
.slider-prev, .slider-next {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all var(--animation-duration) var(--animation-ease);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    line-height: 48px;
    text-align: center;
}

.slider-prev:hover, .slider-next:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 文章模块样式 */
.articles-section {
    padding: 120px 0;
    background-color: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;

    /* 响应式调整 */
    @media (max-width: 1199px) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.article-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--animation-duration) var(--animation-ease);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--animation-duration) var(--animation-ease);
}

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

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.article-date, .article-category {
    font-size: 14px;
    color: var(--slate-600);
}

.article-category {
    background-color: rgba(22, 93, 255, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 30px;
}

.article-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-card-link:hover .article-card {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-card-link:hover .article-image {
    transform: scale(1.05);
}

.articles-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.articles-more-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    background-color: rgba(22, 93, 255, 0.1);
    padding: 12px 32px;
    border-radius: 30px;
    transition: all var(--animation-duration) var(--animation-ease);
    text-decoration: none;
}

.articles-more-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* 联系我们样式 */
.contact-section {
    padding: 120px 0;
    background-color: var(--slate-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* 联系我们区域响应式调整 */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--slate-800);
}

.form-input, .form-textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    font-size: 16px;
    color: var(--dark);
    transition: all var(--animation-duration) var(--animation-ease);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--animation-duration) var(--animation-ease);
    margin-top: 16px;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(22, 93, 255, 0.3);
}

.contact-info-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--dark);
}

.contact-info-list {
    list-style: none;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-icon-container {
    width: 48px;
    height: 48px;
    background-color: rgba(22, 93, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
}

/* 联系信息图标 - 使用Font Awesome */
.contact-info-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    font-size: 24px;
    line-height: 24px !important;
    text-align: center;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    color: var(--dark);
}

.contact-map-container {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map {
    width: 100%;
    height: 100%;
    background-color: var(--slate-200);
}