/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* Header section */
header {
    background-color: #2a4d76;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Main content area */
main {
    margin-top: 20px;
}

/* Section styling */
section {
    margin-bottom: 40px;
}

h2 {
    color: #2a4d76;
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Subcategory section */
.subcat ul{
    list-style-type: none;
    padding-left: 0;
}

.subcat li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.subcat li b {
    color: #2a4d76;
}

.subcat ol {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 5px;
}

/* Documentation links section */
.documentation-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.doc-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doc-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.doc-card a {
    text-decoration: none;
    color: #2a4d76;
    font-weight: bold;
}

.doc-card a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .doc-card {
        width: 100%;
    }
}
