* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    min-height: 100vh;
    padding: 20px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
h1 {
    color: #333;
    margin-bottom: 20px;
}
h2 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3em;
}
p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
ul {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    margin-left: 20px;
}
li {
    margin-bottom: 8px;
}
.nav {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
a {
    color: #0f766e;
    text-decoration: none;
    margin-right: 20px;
}
a:hover {
    text-decoration: underline;
}
.highlight {
    background: #ecfeff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.tech-item {
    background: #f0fdfa;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #0f766e;
}
.tech-item h4 {
    color: #333;
    margin-bottom: 5px;
}
.tech-item p {
    margin: 0;
    font-size: 0.9em;
}

.faq-item {
    margin: 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h2 {
    margin-top: 0;
    margin-bottom: 8px;
}
.example-card {
    margin: 30px 0;
    padding: 25px;
    background: #f0fdfa;
    border-radius: 10px;
    border-left: 4px solid #0f766e;
}
.example-meta {
    font-size: 0.85em;
    color: #0f766e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.example-card h2 {
    margin-top: 5px;
    margin-bottom: 12px;
}
.example-card figure {
    margin: 20px 0;
}
.example-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.example-card figcaption {
    font-size: 0.8em;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}
.example-query {
    background: #ecfeff;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: monospace;
    font-size: 0.85em;
    color: #0f766e;
    word-break: break-all;
    margin-top: 15px;
}
