body {
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow-x: hidden; /* Disable horizontal scroll bar */
}

.container {
    text-align: left;
    max-width: 80%;
    margin: 10px auto 0 auto; /* Adjusted top margin */
}

.container h1 {
    font-size: 36px; /* Smaller font size for h1 */
    text-align: center; /* Center horizontally */
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
}

.container h1 .material-icons {
    font-size: 40px;
    margin-right: 10px; /* Add space between the icon and the text */
    color: green; /* Updated to green */
}

.container img {
    width: 800px; /* Set image width */
    height: auto; /* Auto adjust height */
    display: block;
    margin: 20px auto; /* Center image horizontally */
}

.features {
    text-align: center;
    max-width: 80%;
    margin: 20px auto;
    padding-bottom: 20px; /* Adjust padding to accommodate the notice and footer */
}

.features h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features h2 .material-icons {
    font-size: 36px;
    margin-right: 10px; /* Add space between the icon and the text */
    color: purple; /* Purple feature icon */
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
}

.buy-now {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
    border-radius: 8px; /* Adds rounded corners */
}

.buy-now:hover {
    background-color: #0056b3;
}


.notice {
    background-color: white;
    padding: 15px;
    margin: 20px auto;
    max-width: 80%;
    text-align: center;
    font-size: 18px;
    border-left: 5px solid yellow;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow effect */
}

.notice p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice p::before {
    content: "⚠️";
    color: yellow;
    font-size: 24px;
    margin-right: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ddd;
    width: 100%;
    position: relative;
    bottom: 0;
}

nav {
    margin: 20px;
    text-align: center;
}

nav a {
    color: blue;
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px;
}

.links {
    display: flex;
    justify-content: center; /* Centers the links horizontally */
    align-items: center;
    gap: 40px; /* Gap between links */
    padding: 20px 0; /* Adds some vertical padding */
}

.links a {
    
    color: blue;
    padding: 10px 20px;
    border-radius: 5px; /* Rounded corners for the link background */
    text-decoration: none;
}

.links a:hover {
    color:black;
}


.guide {
    text-align: left;
    max-width: 80%;
    margin: 10px auto 0 auto;
    margin-bottom: 100px;
    background-color: #f0f0f0; /* Light grey background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
}

.guide h2 {
    text-align: center; /* Center h2 */
}

