/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Font Settings */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 2rem;
}

header h1 {
    margin-bottom: 0.5rem;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

/* Section Styling */
section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

section img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 1rem auto;
}

section ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Preorder Form Styling */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #0056b3;
}

/* Comment Section Styling */
#commentSection {
    margin-top: 1rem;
}

.comment {
    background-color: #e9e9e9;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.comment p {
    margin: 0;
}

textarea {
    resize: none;
    height: 100px;
}

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

footer button {
    background-color: #007BFF;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

footer button:hover {
    background-color: #0056b3;
}
section img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 1rem auto;
}
