/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    font-size: 14px; /* Adjusted base font size */
    width: 100%; /* Ensure body spans full width */
}

header {
    background-color: #002E9D;
    color: white;
    padding: 0.5rem; /* Adjusted padding */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%; /* Ensure header spans full width */
}

header .logo {
    position: absolute;
    left: 1rem;
    max-height: 40px; /* Adjusted height */
}

nav {
    display: flex;
    justify-content: center;
    margin: 3rem 0; /* Adjusted margin */
    width: 100%; /* Ensure nav spans full width */
}

nav input[type="text"] {
    padding: 0.6rem; /* Adjusted padding */
    margin-right: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 300px; /* Adjusted width */
}

nav button {
    background-color: #0098DD;
    color: white;
    border: none;
    padding: 0.3rem 0.8rem; /* Adjusted padding */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

nav button:hover {
    background-color: #007BB5;
}

main {
    padding: 1.5rem; /* Adjusted padding */
    width: 100%; /* Ensure main spans full width */
    max-width: 1000px; /* Set a maximum width */
    margin: 0 auto;
}

#how-to {
    background-color: white;
    padding: 1.5rem; /* Adjusted padding */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem; /* Adjusted margin */
    width: 100%; /* Set width to 100% */
}

#how-to h2 {
    color: #0098DD;
    border-bottom: 2px solid #0098DD;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem; /* Adjusted font size */
}

.step {
    margin-bottom: 1.5rem; /* Adjusted margin */
    padding: 1rem;
    border-left: 4px solid #0098DD;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step h3 {
    color: #333;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem; /* Adjusted font size */
}

.step-content {
    display: none;
    margin-top: 1rem;
}

.step img, .step video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

hr {
    border: none;
    height: 1px;
    background-color: #0098DD;
    margin: 1.5rem 0; /* Adjusted margin */
}

.step.hidden + hr {
    display: none;
}

footer {
    background-color: #002E9D;
    color: white;
    text-align: center;
    padding: 0.5rem; /* Adjusted padding */
    position: static;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem; /* Adjusted font size */
}
