.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-btn.active {
    color: #ffffff;
    border-bottom: 2px solid #05979be0;
    padding-bottom: 5px;
}

.docs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
}

.mission-section, .roadmap-section {
    margin-bottom: 60px;
    width: 100%;
}

.mission-section h2, .roadmap-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #05979b;
    text-align: center;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-text {
    background-color: rgba(5, 151, 155, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #05979b;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
}

.mission-graphic {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.graphic-item {
    flex: 1;
    background-color: rgba(5, 151, 155, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.graphic-item:hover {
    transform: translateY(-5px);
}

.graphic-item i {
    font-size: 36px;
    color: #05979b;
    margin-bottom: 15px;
}

.graphic-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.graphic-item p {
    font-size: 14px;
    color: #94a3b8;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #05979b;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -14px;
    background-color: #05979b;
    border: 4px solid #011410;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-date {
    font-weight: bold;
    font-size: 20px;
    color: #05979b;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 20px;
    background-color: rgba(5, 151, 155, 0.1);
    border-radius: 10px;
    border-left: 4px solid #05979b;
    /* border:1px solid #05979b; */
}

.timeline-content ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.timeline-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #e2e8f0;
}

.timeline-content li::before {
    content: '•';
    color: #05979b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .links-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-nav {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .mobile-nav .nav-buttons {
        display: flex;
        gap: 50px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-section {
        display: none;
    }
    
    .mobile-section.active {
        display: block;
    }
    
    footer {
        position: relative;
        margin-bottom: 20px;
    }
    
    .mission-graphic {
        flex-direction: column;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
    
    .mission-section h2, .roadmap-section h2 {
        font-size: 28px;
    }
    
    .mission-text p {
        font-size: 16px;
    }
    .docs-section {
        width: 90vw;
    }
}