
        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
 /* 平滑滚动 */
        html {
            scroll-behavior: smooth;
        }
        body {
         background: linear-gradient(89deg, #c0deff78, #ffeef042);
            color: #333;
            line-height: 1.6;
            padding: 20px;
            padding-top: 100px; /* 为固定导航栏留出空间 */
        }

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

        /* 导航栏样式 - 固定在顶部，无圆角，全宽 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #ffffffcc;
            backdrop-filter: saturate(5) blur(20px);
            padding: 15px 0px;
            padding-left: 30px;
            padding-right: 250px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 228px;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: bold;
            color: #2c3e50;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            margin-right: 30px;
        }

        .nav-links a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #4c9aff;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #4c9aff;
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .more-link {
            color: #4c9aff !important;
        }

        /* 搜索区域样式 - 左右布局 */
        .search-section {
            display: flex;
            gap: 30px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .search-left {
            flex: 3;
            max-width: 50%;
        }

        .search-right {
            flex: 2;
            background-image: url(/static/images/printer.png);
            /*background: linear-gradient(90deg, #4c9aff, #accdff);*/
            color: white;
            border-radius: 10px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .search-section h1 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 28px;
        }

        .help-tip {
            color: #4c9aff;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .help-tip i {
            font-size: 20px;
        }
        .help-tip a {
           color: #4c9aff;
           text-decoration: none;
        }

        .search-box {
            display: flex;
            border: 2px solid #4c9aff;
            border-radius: 50px;
            overflow: hidden;
            margin-bottom: 0px;
            margin-right: 50px;
        }

        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            outline: none;
            font-size: 16px;
        }

        .search-btn {
            background: #4c9aff;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #2a87ff;
        }

        .universal-driver h1 {
            margin-bottom: 10px;
            font-size: 28px;
            color: #fff;
        }

        .universal-driver p {
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .download-btn {
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            color: #4c9aff;
            border: none;
            padding: 12px 30px;
           text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
           
            width: 40%;
        }

        .download-btn:hover {
           transform: translateY(-2px);
           box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .update-time {
            color: #7f8c8d;
            font-size: 14px;
            text-align: center;
            margin-top: 20px;
        }

        /* 热门品牌样式 */
        .popular-brands {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .popular-brands h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 24px;
            text-align: center;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .brand-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            color: #333;
            text-decoration: none;
        }

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

        .brand-icon {
            width: 150px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .brand-icon img{
            width: 150px;
            height: 40px;
           
        }
        .brand-item span {
            font-weight: 500;
        }

        /* 所有品牌列表样式 */
        .all-brands {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .all-brands h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .all-brands h2 span {
            font-size: 16px;
            color: #7f8c8d;
            font-weight: normal;
        }

        .alphabet-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
        }

        .alphabet-filter a {
            color: #333;
            text-decoration: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f2f6;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .alphabet-filter a:hover {
            background: #4c9aff;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .brand-letter-group {
            margin-bottom: 30px;
            scroll-margin-top: 80px; 
        }

        .brand-letter-group h3 {
            color: #2c3e50;
            font-size: 20px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid #4c9aff;
        }

        .brand-names {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .brand-names a {
            color: #333;
            text-decoration: none;
            padding: 8px 15px;
            background: #f8f9fa;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .brand-names a:hover {
            background: #4c9aff;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* 页脚样式 */
        footer {
            text-align: center;
            padding: 20px;
            color: #7f8c8d;
            font-size: 14px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .search-section {
                flex-direction: column;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 15px;
                padding: 10px 20px;
            }
            
            .search-box {
                flex-direction: column;
                border-radius: 10px;
                border: 2px solid #4c9aff;
            }
            
            .search-box input {
                padding: 12px 15px;
                border-bottom: 1px solid #eaeaea;
            }
            
            .search-btn {
                border-radius: 0 0 8px 8px;
            }
            
            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            
            .alphabet-filter {
                gap: 5px;
            }
            
            .alphabet-filter span {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            body {
                padding-top: 150px; /* 为移动端的固定导航栏留出更多空间 */
            }
        }

        /* 搜索框样式 */
        .search-container {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }

        .back-button {
            text-decoration: none;
            background: #4c9aff;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            margin-right: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: background 0.3s;
        }
 .back-button:hover{
            background: #2a87ff;
        }
        .search-box {
            display: flex;
            flex: 1;
            border: 2px solid #4c9aff;
            border-radius: 50px;
            overflow: hidden;
        }

        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            outline: none;
            font-size: 16px;
        }

        .search-btn {
            background: #4c9aff;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #2a87ff;
        }

        /* 搜索结果标题 */
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .results-title {
            color: #333;
            font-size: 24px;
            text-align: center;
            width: 100%;
        }
.results-title a{
            color: red;
            
        }
        .results-count {
            color: #7f8c8d;
            font-size: 16px;
        }

        /* 搜索结果列表 */
        .results-list {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .result-item {
            display: flex;
            padding: 25px;
            border-bottom: 1px solid #eaeaea;
        }

        .result-item:last-child {
            border-bottom: none;
        }

        .driver-icon {
            width: 140px;
            height: 140px;
            
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .driver-icon img{
           
            height: 100px;
           
        }
        .driver-info {
            flex: 1;
            margin-top: 15px;
        }

        .driver-name {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
        }
       .driver-name a{
            font-size: 20px;
            color: #2c3e50;
            text-decoration: none;
        }
        .driver-name a:hover{
            color: #4c9aff;
            text-decoration: underline;
        }
        .driver-desc {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .driver-meta {
            display: flex;
            gap: 20px;
            color: #7f8c8d;
            font-size: 14px;
        }

        .driver-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .search-download-action {
            display: flex;
            align-items: center;
        }

        .search-download-btn {
              text-decoration: none;
            background: #4c9aff;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .search-download-btn:hover {
            background: #2a7de8;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* 驱动详情头部 */
.driver-header {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    gap: 20px;
}

.driver-icon-large {
    width: 140px;
    height: 140px;
    
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}
.driver-icon-large img{
   
    height: 100px;
   
}
.driver-title {
    flex: 1;
}

.driver-title h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.driver-title p {
    color: #7f8c8d;
    font-size: 16px;
}

.driver-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-right: 90px;
}

.main-download-btn {
    background: #4c9aff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.main-download-btn:hover {
    background: #2a7de8;
}

.driver-size {
    color: #7f8c8d;
    font-size: 14px;
}

/* 信息卡片 */
.info-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    color: #7f8c8d;
    font-size: 14px;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
}

.content-list {
    list-style: none;
}

.content-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-list li:before {
    content: '•';
    color: #4c9aff;
    font-weight: bold;
}

.content-list li:last-child {
    border-bottom: none;
}

/* 下载选项 */
.download-options {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.download-options h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.option-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: #4c9aff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.option-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.option-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 14px;
}

.option-download-btn {
    background: #4c9aff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.option-download-btn:hover {
    background: #2a7de8;
}

/* 安装指南 */
.installation-guide {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.installation-guide h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4c9aff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.step-content p {
    color: #7f8c8d;
    font-size: 14px;
}

/* 相关驱动 */
.related-drivers {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.related-drivers h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.3s;
}

.related-item:hover {
    background: #e9ecef;
}

.related-item i {
    color: #4c9aff;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #4c9aff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 12px;
}
/* 分页样式 */
   .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .pagination-item {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            background: #4c9aff;
            color: white;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }
        
        .pagination-item:hover {
            background: #2a7de8;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .pagination-item.disabled {
            background: #bdc3c7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .pagination-info {
            padding: 12px 18px;
            background: #fff;
            color: #2c3e50;
            border-radius: 6px;
            font-weight: 500;
            font-size: 22px;
            text-align: center;
        }
        .pagination-info a{
            
            
            color: red;
            
            text-align: center;
        }
        .pagination-select {
            position: relative;
            display: flex;
            align-items: center;
            background: #ecf0f1;
            border-radius: 6px;
            padding: 0 15px;
            cursor: pointer;
            user-select: none;
            font-weight: 500;
            color: #2c3e50;
            height: 44px;
        }
        
        .pagination-select select {
            appearance: none;
            border: none;
            background: transparent;
            padding: 0 20px 0 10px;
            font-size: 16px;
            color: #2c3e50;
            font-weight: 500;
            cursor: pointer;
            outline: none;
            width: 100%;
            height: 100%;
        }
        
        .pagination-select::after {
            content: "▼";
            font-size: 12px;
            color: #7f8c8d;
            position: absolute;
            right: 15px;
            pointer-events: none;
        }
 .pagination-select select option {
            padding: 12px 15px;
            background: white;
            color: #2c3e50;
            border-bottom: 1px solid #ecf0f1;
            transition: background 0.2s;
        }
        
        .pagination-select select option:hover {
            background: #4c9aff !important;
            color: white;
        }
        
        .pagination-select select option:checked {
            background: #ecf0f1;
            color: #4c9aff;
            font-weight: 600;
        }
        
  /* 文章内容 */
.article-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.article-header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-header h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #7f8c8d;
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}   
.article-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4c9aff;
}

.article-intro p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.content-section h3 {
    color: #2c3e50;
    margin: 20px 0 10px;
    font-size: 20px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ol, .content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.tip-box {
    background: #e3f2fd;
    border-left: 4px solid #4c9aff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tip-box i {
    color: #4c9aff;
    font-size: 18px;
    margin-top: 2px;
}

.problem-solution {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.problem {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.problem:last-child {
    border-bottom: none;
}

.problem h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 18px;
}

.summary {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.summary h2 {
    color: #2e7d32;
}

.summary a {
    color: #4c9aff;
    text-decoration: none;
}

.summary a:hover {
    text-decoration: underline;
}
/* 文章页脚 */
.article-footer {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    margin-top: 40px;
}

.tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tags span {
    color: #7f8c8d;
    font-weight: 500;
}

.tags a {
    background: #f1f8ff;
    color: #4c9aff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.tags a:hover {
    background: #dbedff;
}

.article-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    text-decoration: none;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.action-btn:hover {
    background: #e9ecef;
}

.action-btn.active {
    background: #4c9aff;
    color: white;
    border-color: #4c9aff;
}
/* 响应式设计 */
@media (max-width: 992px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {

    
    .driver-header {
        flex-direction: column;
        text-align: center;
    }
    
    .driver-actions {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .related-list {
        grid-template-columns: 1fr;
    }
    

}