.docs-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 60px 0 100px;
}

.docs-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.docs-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.docs-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #f0f0f0;
}

.docs-header h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.docs-update-date {
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

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

.docs-section h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.docs-section h2::before {
    content: '';
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 3px;
}

.docs-section h3 {
    font-size: 22px;
    color: #4a5568;
    margin: 25px 0 15px;
    font-weight: 600;
}

.docs-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.docs-section ul, .docs-section ol {
    margin: 20px 0 20px 25px;
}

.docs-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 10px;
}

.docs-section ul li::marker {
    color: #667eea;
    font-size: 20px;
}

.docs-section ol li::marker {
    color: #667eea;
    font-weight: 600;
}

.docs-section a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.docs-section a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0e7ff 100%);
    border-left: 4px solid #667eea;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.highlight-box p {
    margin: 0;
    color: #4338ca;
    font-weight: 500;
}

.info-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.info-table td:first-child {
    font-weight: 600;
    color: #667eea;
    width: 35%;
}

.info-table td:last-child {
    color: #4a5568;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 35px;
    border-radius: 16px;
    margin-top: 50px;
}

.contact-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    margin: 8px 0;
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 30px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .docs-card {
        padding: 30px 25px;
    }
    
    .docs-header h1 {
        font-size: 32px;
    }
    
    .docs-section h2 {
        font-size: 24px;
    }
    
    .info-table td:first-child {
        width: 45%;
    }
}
