* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Proxima Nova', Arial, sans-serif;
    background: #f5f6f5; /* Tesla-inspired light gray */
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: #fff;
    padding: 20px 0; /* Slim header */
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: fixed; /* Fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 15px auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.tagline {
    font-size: 1.3em;
    font-weight: 700;
    color: #393c41;
    margin-bottom: 10px;
}

.version {
    display: block;
    font-size: 0.9em;
    color: #666;
}

/* Main Content Styles */
main {
    margin-top: 120px; /* Space below fixed header */
    padding: 40px 0;
}

main .container {
    max-width: 1200px; /* Full width since no sidebar */
}

section {
    margin-bottom: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    font-size: 2em;
    font-weight: 700;
    color: #393c41;
    margin-bottom: 15px;
    border-left: 4px solid #d60e0e; /* Tesla red */
    padding-left: 10px;
}

p, ul {
    font-size: 1.1em;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

code {
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 4px;
    color: #d60e0e;
    font-family: 'Courier New', monospace;
}

/* Footer Styles */
footer {
    background: #f5f6f5;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

footer a {
    color: #d60e0e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 1.1em;
    }

    main {
        margin-top: 100px;
    }

    h2 {
        font-size: 1.6em;
    }

    section {
        padding: 15px;
    }
}