﻿/* 复用原有样式 */
:root {
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --secondary: #ff6d00;
    --light: #f5f7fa;
    --dark: #263238;
    --gray: #78909c;
    --success: #43a047;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
    }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

    .btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.btn-secondary {
    background: var(--secondary);
}

    .btn-secondary:hover {
        background: #e65100;
    }

/* 导航栏 */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 40px;
        margin-right: 10px;
    }

    .logo h1 {
        font-size: 1.5rem;
        color: var(--primary);
        font-weight: 700;
    }

.nav-links {
    display: flex;
    list-style: none;
}

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 1.05rem;
        transition: color 0.3s;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* 页脚 */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--primary);
    }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #b0bec5;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: white;
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0bec5;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* 页面头部 */
.week-header-integrated {
    background: linear-gradient(135deg, rgba(30,136,229,0.9) 0%, rgba(33,150,243,0.9) 100%), url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10px 0 10px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: white;
        }

    .breadcrumb span {
        margin: 0 10px;
        color: rgba(255, 255, 255, 0.6);
    }

.week-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.week-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* 主内容区 */
.main-content {
    flex: 1;
    padding: 30px 40px;
    background: #f9f9f9;
}

.day-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s;
}

    .day-section:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.day-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

    .day-header h2 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .day-header h2 i {
            margin-right: 15px;
        }

    .day-header p {
        color: var(--gray);
        font-size: 1.1rem;
        max-width: 800px;
    }

.learning-goal {
    background: rgba(30, 136, 229, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

    .learning-goal h3 {
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .learning-goal h3 i {
            margin-right: 10px;
        }

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.content-card {
    background: rgba(30, 136, 229, 0.03);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: var(--primary);
    }

    .content-card h3 {
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .content-card h3 i {
            margin-right: 10px;
        }

.resource-list {
    list-style: none;
    padding-left: 0;
}

    .resource-list li {
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
    }

        .resource-list li::before {
            content: '•';
            position: absolute;
            left: 10px;
            color: var(--primary);
            font-weight: bold;
        }

.practice-card {
    background: rgba(255, 109, 0, 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--secondary);
    margin-top: 30px;
}

    .practice-card h3 {
        color: var(--secondary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .practice-card h3 i {
            margin-right: 10px;
        }

.tip-box {
    background: rgba(67, 160, 71, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--success);
}

    .tip-box h3 {
        color: var(--success);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .tip-box h3 i {
            margin-right: 10px;
        }

/* 响应式设计 */
@media (max-width: 992px) {
    .main-content {
        padding: 20px;
    }

    .day-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 15px;
    }

    .day-section {
        padding: 20px;
    }
}

/* 新增书籍样式 */
.books-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.book-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .book-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

.book-cover {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #f5f7fa;
}

.book-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.book-author {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.book-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ffc107;
    margin-right: 10px;
}

.rating-value {
    font-weight: bold;
    color: #333;
}

.book-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.book-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.book-tag {
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.books-intro {
    background: rgba(30, 136, 229, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.filter-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--primary);
        color: white;
    }

.book-highlight {
    background: #fff8e1;
    border-left: 3px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 5px 5px 0;
}

/* 新增样式：书籍详情部分 */
.book-features {
    margin: 15px 0;
    padding-left: 20px;
}

    .book-features li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 25px;
    }

        .book-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

.difficulty-indicator {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.difficulty-beginner {
    background: rgba(67, 160, 71, 0.15);
    color: #43a047;
}

.difficulty-intermediate {
    background: rgba(255, 152, 0, 0.15);
    color: #ff6d00;
}

.difficulty-advanced {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}


/* 下拉菜单 */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
}

    .dropdown-content a:hover {
        background: rgba(74, 110, 224, 0.05);
        color: var(--primary);
    }


.level-indicator {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #ff6d00, #ff9e00);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.expert-tip {
    background: rgba(67, 160, 71, 0.1);
    border-left: 4px solid #43a047;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.skill-roadmap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.skill-category {
    flex: 1;
    min-width: 250px;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 10px;
    padding: 20px;
}

    .skill-category h4 {
        color: var(--primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .skill-category h4 i {
            margin-right: 10px;
        }

    .skill-category ul {
        padding-left: 20px;
    }

    .skill-category li {
        margin-bottom: 8px;
    }

.progress-container {
    margin: 20px 0;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
}

/* 新增中级程序员书籍推荐卡片样式 */
.expert-recommendation {
    border: 2px solid #ff6d00;
    position: relative;
}

.expert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6d00;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}


/* 架构师书籍新增样式 */
.book-impact {
    display: inline-block;
    background: #ffeb3b;
    color: #333;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 8px;
}

.architecture-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #1e88e5;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
}

/* 新增架构师专用样式 */
.architect-tag {
    background: linear-gradient(45deg, #ff6d00, #ff9e00);
    color: white;
    font-weight: bold;
}

.expert-box {
    background: rgba(30, 136, 229, 0.07);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #1e88e5;
}

.book-recommendation {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
}

    .book-recommendation:before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 10px;
        font-size: 4rem;
        color: rgba(67, 160, 71, 0.2);
        font-family: serif;
    }

    .book-recommendation p {
        position: relative;
        z-index: 1;
        font-style: italic;
        color: #2e7d32;
    }

.architect-level {
    background: #f5f7fa;
    border: 2px dashed #1e88e5;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.roadmap-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.roadmap-step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

    .roadmap-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .roadmap-step i {
        font-size: 2.5rem;
        color: #1e88e5;
        margin-bottom: 15px;
    }

    .roadmap-step h4 {
        color: #1565c0;
        margin-bottom: 10px;
    }
/* 新增样式：项目经理专属 */
.manager-book {
    border-top: 4px solid #673ab7;
}

.manager-tag {
    background: rgba(103, 58, 183, 0.1);
    color: #673ab7;
}

.difficulty-management {
    background: rgba(103, 58, 183, 0.15);
    color: #673ab7;
}

.manager-highlight {
    background: #e8eaf6;
    border-left: 3px solid #3f51b5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.manager-title {
    font-size: 1.4rem;
    color: #3f51b5;
}

.manager-content {
    background: rgba(63, 81, 181, 0.05);
    border-left: 4px solid #3f51b5;
}

.manager-practice {
    background: rgba(121, 85, 72, 0.05);
    border-left: 4px solid #5d4037;
}

    .manager-practice h3 {
        color: #5d4037;
    }

.role-transition {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.role-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

    .role-card:hover {
        transform: translateY(-5px);
    }

    .role-card h4 {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .role-card ul {
        text-align: left;
        padding-left: 20px;
    }

    .role-card li {
        margin-bottom: 10px;
    }
/* 新增视频样式 */
.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f5f7fa;
}

    .video-thumbnail::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
        transition: background 0.3s;
    }

.video-card:hover .video-thumbnail::after {
    background: rgba(30, 136, 229, 0.6);
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.video-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 3.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-author {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

    .video-author i {
        margin-right: 8px;
        color: var(--primary);
    }

.video-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.video-duration {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    z-index: 2;
}

.video-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.video-tag {
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.videos-intro {
    background: rgba(30, 136, 229, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.filter-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--primary);
        color: white;
    }

.video-highlight {
    background: #fff8e1;
    border-left: 3px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 5px 5px 0;
}

/* 学习笔记部分 */
.notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.note-card {
    background: rgba(67, 160, 71, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--success);
}

    .note-card h3 {
        color: var(--success);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .note-card h3 i {
            margin-right: 10px;
        }

.note-content {
    color: #555;
    line-height: 1.7;
}

    .note-content code {
        background: rgba(0, 0, 0, 0.05);
        padding: 2px 6px;
        border-radius: 4px;
        font-family: monospace;
    }

/* Spring Boot特定样式 */
.spring-boot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: rgba(109, 179, 63, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 3px solid var(--spring);
}

    .feature-card h4 {
        color: var(--spring);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .feature-card h4 i {
            margin-right: 10px;
        }

.progress-container {
    margin: 20px 0;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--spring);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray);
}

.spring-green {
    color: var(--spring);
}

.spring-bg {
    background: var(--spring);
}

.learning-path {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border: 1px dashed var(--spring);
}

.path-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.path-step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

    .path-step:not(:last-child):after {
        content: '→';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--spring);
        font-size: 1.5rem;
    }

    .path-step i {
        font-size: 2rem;
        color: var(--spring);
        margin-bottom: 10px;
    }

    .path-step h4 {
        color: var(--dark);
        font-size: 1.1rem;
    }