body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eaeaea;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 2.5em;
    margin: 10px 0;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0;
}

.separator {
    border-top: 2px solid #2c3e50;
    margin: 20px 0;
}

.box-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.box {
    flex: 1;
    background-color: #3498db;
    color: white;
    padding: 15px;
    margin: 0 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.box:hover {
    background-color: #2980b9;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #2c3e50;
    color: white;
}

.moto-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.moto-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.moto-container h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.moto-container p {
    font-size: 1.1em;
    line-height: 1.7;
    margin: 10px 0;
    color: #333;
}

.moto-container ul {
    list-style-type: disc;
    padding-left: 40px; /* Indentation for the list */
    text-align: left; /* Align list items to the left */
}

.moto-container li {
    margin: 5px 0;
    font-size: 1.1em;
}

.moto-border {
    border-top: 1px solid #dcdcdc; /* Light border color */
    margin: 20px 0; /* Spacing around the border */
}

.updates-section,
.new-update-section {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9; /* Light background for better contrast */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.updates-section:hover,
.new-update-section:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.updates-section h2,
.new-update-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updates-section p,
.new-update-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
}

.updates-section ul,
.new-update-section ul {
    list-style-type: disc;
    padding-left: 40px; /* Indentation for the list */
}

.updates-section li,
.new-update-section li {
    margin: 5px 0;
    font-size: 1.1em;
}