/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, #ff7b54, #ffae42);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

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

.header p {
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    color: white;
    background-color: #0056b3;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #003f7f;
}

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

.instructions, .tips, .commands {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.instructions h2, .tips h3, .commands h3 {
    margin-top: 0;
}

.instructions ol, .tips ul, .commands ul {
    padding-left: 1.5rem;
}

.instructions ol li, .tips ul li, .commands ul li {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
}

footer a {
    color: #ffae42;
    text-decoration: none;
}
