/* how_it_works.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
}

/* HEADER */

.header {
    background: linear-gradient(135deg, #FF0000 0%, #FF5050 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-item {
    margin-left: 20px;
}

.navbar-item .button {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.navbar-item .button:hover {
    background: linear-gradient(135deg, #FF5050, #FF0000);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(255, 80, 80, 0.6);
}

/* HEADER CONTENT */

.header-content {
    margin-top: 20px;
}

.header-content h1 {
    margin: 0;
    font-size: 36px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.header-content p {
    font-size: 18px;
    margin: 10px 0 0;
    color: #ffcccc;
}

/* MAIN */

.main-content {
    padding: 20px;
    text-align: center;
}

/* STEPS */

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.step {
    background: #292929;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 80, 80, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 80, 80, 0.4);
}

.step-content {
    padding: 20px;
}

.step-number {
    display: block;
    font-size: 24px;
    color: #FF5050;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-title {
    font-size: 24px;
    margin: 10px 0;
    color: #ffffff;
}

.step-description {
    font-size: 16px;
    color: #dddddd;
}

/* FOOTER */

.footer {
    background: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(255, 80, 80, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
