body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #181818;
    text-align: center;
    color: #fff;
}

/* Container */
.container {
    padding: 40px 20px;
}

/* Header */
h1 {
    font-size: 2.5rem;
    color: #12bff3;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Box Styling */
.box {
    background: #222;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: translateY(-5px);
}

/* Headings */
h2 {
    font-size: 1.8rem;
    color: #12bff3;
    margin-bottom: 10px;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #333;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.3s ease;
}

ul li:hover {
    background: #444;
}

/* Buttons */
button {
    padding: 12px 18px;
    margin-top: 15px;
    background: #f39c12;
    color: #181818;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #e67e22;
}

a {
    color: #fff; /* Makes the text white */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #f39c12; /* Changes to MotoGrid orange on hover */
    text-decoration: underline; /* Adds underline on hover */
}

input {
    padding: 10px;
    width: 70%;
    margin-top: 10px;
    border: 2px solid #f39c12;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}

input:focus {
    outline: none;
    border-color: #e67e22;
}

/* Flexbox Layout for Side Images */
.main-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

/* Side Image Columns */
.side-column {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Side Images */
.side-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.center-content {
    width: 60%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .side-column {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .side-image {
        max-width: 150px;
    }

    .center-content {
        width: 90%;
    }
}