.docs-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.docs-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.docs-hero .lead {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.docs-nav {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.docs-search {
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
}

.docs-search input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    font-size: 16px;
}

.docs-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.docs-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.docs-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.docs-menu a:hover {
    color: var(--primary-color);
}

.docs-menu a.active {
    background: var(--primary-color);
    color: var(--white);
}

.docs-breadcrumb {
    margin-bottom: 20px;
    padding: 10px 0;
}

.docs-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.docs-breadcrumb span {
    color: var(--dark-gray);
    margin: 0 10px;
}

.docs-content {
    padding: 60px 0;
}

.docs-section {
    margin-bottom: 60px;
}

.docs-section h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 32px;
}

.docs-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.docs-section p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.docs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.doc-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.doc-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.doc-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.doc-card p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .docs-hero h1 {
        font-size: 36px;
    }
    
    .docs-hero .lead {
        font-size: 20px;
    }
    
    .docs-menu {
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .docs-cards {
        grid-template-columns: 1fr;
    }
} 