/* 服务快速导航样式 */
.services-quick-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-nav-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.1);
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* 服务类别样式增强 */
.service-category {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.service-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.category-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.category-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.service-tag {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
}

/* 服务特性样式 */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* 应用场景列表 */
.scenario-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.scenario-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.scenario-item i {
    color: #28a745;
}

/* 岗位网格 */
.position-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.position-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.position-card h4 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.position-card ul {
    list-style: none;
    padding: 0;
}

.position-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.position-card li:last-child {
    border-bottom: none;
}

/* 项目流程优化 */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    min-width: 150px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.flow-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step-desc {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* 示例网格 */
.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #007bff;
}

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

.duration {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* 招聘流程样式 */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #dee2e6;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 1rem;
}

/* 优势网格 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.advantage-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* 诊断内容样式 */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.focus-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.focus-item:hover {
    transform: translateY(-3px);
}

.focus-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* 时间线样式 */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #007bff;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    margin-left: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-desc {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 交付成果卡片 */
.deliverable-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.deliverable-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
}

.deliverable-card:hover i,
.deliverable-card:hover h4,
.deliverable-card:hover p {
    color: white;
}

.deliverable-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* 服务对比表 */
.services-comparison {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table tr:first-child td {
    font-weight: 500;
    background: #f1f3f4;
}

/* 联系咨询部分 */
.services-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #764ba2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .quick-nav-container {
        justify-content: flex-start;
    }
    
    .nav-item {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
    }
    
    .nav-item i {
        font-size: 1.25rem;
    }
    
    .nav-item span {
        font-size: 0.8rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin: 0 auto;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}
/* ============================================
   手机端优化样式 - 专注于移动设备适配
   保持电脑端样式不变，只针对手机进行优化
============================================ */

/* 服务快速导航 - 手机端优化 */
@media (max-width: 768px) {
    .services-quick-nav {
        padding: 0.5rem 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .quick-nav-container {
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .quick-nav-container::-webkit-scrollbar {
        display: none;
    }
    
    .nav-item {
        min-width: 110px;
        padding: 0.8rem 0.6rem;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .nav-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .nav-item span {
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
    }
    
    .nav-item:hover,
    .nav-item.active {
        border-color: #007bff;
        transform: none;
        box-shadow: 0 2px 6px rgba(0,123,255,0.2);
    }
    
    /* 页面标题优化 */
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* 服务类别容器优化 */
    .services-detail {
        padding: 0 1rem;
    }
    
    .service-category {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }
    
    /* 类别头部优化 */
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
        margin-top: 0.3rem;
        line-height: 1.4;
    }
    
    .service-tag {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.8rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* 服务特性优化 */
    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .feature {
        padding: 1.2rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .feature:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .feature i {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* 服务示例优化 */
    .service-examples h3,
    .application-scenarios h3,
    .project-flow h3,
    .project-examples h3,
    .recruitment-process h3,
    .recruitment-advantages h3,
    .diagnosis-overview h3,
    .diagnosis-process h3,
    .diagnosis-deliverables h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .scenario-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .scenario-card {
        padding: 1.2rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .scenario-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .scenario-card h4 i {
        font-size: 1.2rem;
    }
    
    .scenario-card > p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        font-style: italic;
        color: #555;
    }
    
    .scenario-details {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 6px;
    }
    
    .scenario-details p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    /* 应用场景优化 */
    .application-scenarios {
        margin-top: 1.5rem;
    }
    
    .scenario-list {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .scenario-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .scenario-item i {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .scenario-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .position-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .position-card {
        padding: 1.2rem;
    }
    
    .position-card h4 {
        font-size: 1.1rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .position-card ul {
        padding-left: 1rem;
    }
    
    .position-card li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    /* 项目流程优化 */
    .project-flow {
        margin: 1.5rem 0;
    }
    
    .flow-diagram {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .flow-step {
        min-width: auto;
        text-align: left;
        padding: 1.2rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .flow-arrow {
        display: none;
    }
    
    .flow-arrow + .flow-step {
        margin-top: 0;
    }
    
    .flow-number {
        margin: 0;
        flex-shrink: 0;
    }
    
    .flow-step p {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }
    
    .step-desc {
        font-size: 0.9rem;
        margin-top: 0.2rem;
        color: #666;
    }
    
    /* 项目示例优化 */
    .example-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .example-card {
        padding: 1.2rem;
    }
    
    .example-header {
        margin-bottom: 1rem;
    }
    
    .example-header h4 {
        font-size: 1.1rem;
    }
    
    .duration {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .example-card ul {
        padding-left: 1rem;
    }
    
    .example-card li {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0.4rem 0;
    }
    
    /* 招聘流程优化 */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        padding: 1.2rem;
        text-align: left;
        position: relative;
        margin-bottom: 0;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
        color: #666;
    }
    
    /* 优势网格优化 */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.2rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .advantage-card:hover {
        transform: none;
    }
    
    .advantage-card i {
        font-size: 1.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .advantage-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .advantage-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* 诊断内容优化 */
    .diagnosis-content {
        margin-top: 1.5rem;
    }
    
    .diagnosis-overview p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .diagnosis-overview h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .focus-item {
        padding: 1rem 0.8rem;
        text-align: center;
    }
    
    .focus-item:hover {
        transform: none;
    }
    
    .focus-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .focus-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* 时间线优化 */
    .process-timeline {
        padding: 1.5rem 0;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-step {
        margin-bottom: 1.5rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 0.8rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .timeline-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* 交付成果优化 */
    .deliverable-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .deliverable-card {
        padding: 1.2rem 0.8rem;
        text-align: center;
    }
    
    .deliverable-card:hover {
        transform: none;
        background: inherit;
        color: inherit;
    }
    
    .deliverable-card:hover i,
    .deliverable-card:hover h4,
    .deliverable-card:hover p {
        color: inherit;
    }
    
    .deliverable-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .deliverable-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .deliverable-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* 服务对比表优化 */
    .services-comparison {
        padding: 2.5rem 0;
        margin-top: 2.5rem;
    }
    
    .services-comparison h2 {
        font-size: 1.5rem;
    }
    
    .services-comparison p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .comparison-table {
        margin-top: 1rem;
    }
    
    .comparison-table table {
        min-width: 700px; /* 确保表格内容不被挤压 */
    }
    
    .comparison-table th {
        padding: 0.8rem 0.6rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .comparison-table td {
        padding: 0.7rem 0.6rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* 联系咨询部分优化 */
    .services-contact {
        padding: 2.5rem 0;
        margin-top: 2.5rem;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 30px;
    }
}

/* 超小屏幕优化 (iPhone SE等) */
@media (max-width: 375px) {
    .nav-item {
        min-width: 100px;
        padding: 0.7rem 0.5rem;
    }
    
    .nav-item i {
        font-size: 1.1rem;
    }
    
    .nav-item span {
        font-size: 0.75rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-subtitle {
        font-size: 0.95rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .deliverable-cards {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        font-size: 0.8rem;
    }
}

/* 平板设备适配 (768px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* 只微调一些细节，保持电脑端样式 */
    .quick-nav-container {
        gap: 0.8rem;
    }
    
    .nav-item {
        min-width: 110px;
        padding: 0.8rem 0.6rem;
    }
    
    .nav-item i {
        font-size: 1.3rem;
    }
    
    .nav-item span {
        font-size: 0.85rem;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}