:root {
    --primary-color: #0366d6;
    --text-color: #24292e;
    --background-color: #ffffff;
    --code-background: #f6f8fa;
    --border-color: #e1e4e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.description {
    font-size: 1.2rem;
    color: #666;
}

.table-of-contents {
    background-color: var(--code-background);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.table-of-contents h2 {
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents a {
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.8;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 3rem;
}

h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

pre {
    background-color: var(--code-background);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1rem 0;
}

code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

.feature-list {
    list-style-position: inside;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: #666;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

img {
    border-radius: 10px;
}

.command-list {
    list-style:outside;
    padding: 0;
    margin-left: 45px;
}

.list {
    margin-top: 75px;
}

.ordering-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-category {
    flex: 1 1 calc(50% - 2rem);
    background-color: var(--code-background);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-category h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-category p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    flex: 1 1 100%;
    margin-top: 2rem;
    background-color: var(--code-background);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.badge-text {
    color: var(--text-color);
    margin-top: 30px;
    margin-left: 10px;
    font-size: 1.5em;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ordering-section {
        flex-direction: column;
    }

    .feature-category {
        flex: 1 1 100%;
    }
}