body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 120px; /* Added padding to avoid content being hidden behind the fixed header */
}

header {
    background-color: white;
    color: black;
    padding: 20px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    z-index: 1000; /* Ensures the header stays on top of other elements */
}

header img {
    position: absolute;
    top: 10px;
    left: 20px;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

p, ul {
    line-height: 1.6;
}

.steps {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.steps h2 {
    background-color: #f39c12;
    color: white;
    padding: 10px;
    border-radius: 4px;
}

.steps pre {
    background-color: #eee;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
}

.btn:hover {
    background-color: #45a049;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
