.container {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    justify-content: space-between; /* Push items to the edges */
    margin-top: 50px; /* Adds space from the top of the page */
    margin-left: 40px; /* Adds space from the left of the page */
    margin-right: 20px; /* Adds space from the right of the page */
}
.content {
    display: flex;
    align-items: flex-start; /* Align image and text at the top */
}
.content img {
    margin-right: 40px; /* Adds space between the image and the text */
    width: 500px; /* Adjusted width to make the image larger */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Rounds the corners of the image */
}
.right-panel {
    padding: 10px;
    width: 250px;
    background-color: #7449b856; /* Light gray background */
    border: 1px solid #ccc; /* Adds a border */
    border-radius: 10px; /* Rounds the corners of the panel */
}
h1 {
    text-align: center; /* Centers the title */
    font-size: 50px; /* Increases font size */
    background-color: #add8e6; /* Pale blue background */
    color: #271414; /* Brighter red color */
    padding: 20px; /* Adds padding around the text */
    border-radius: 0; /* Removes rounded corners */
    margin: 0; /* Removes margin */
    width: 100%; /* Extends the banner to the full width of the page */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds a 3D shadow effect */
}
a {
    text-decoration: none; /* Removes underline from the link */
    font-size: 20px; /* Increases font size */
    color: black; /* Changes text color to black */
}
p {
    max-width: 300px; /* Limits the width of the paragraph */
    line-height: 1.5; /* Improves readability */
}
.bold-text {
    font-size: 30px; /* Sets font size to 30px */
    font-weight: bold; /* Makes the text bold */
    margin-bottom: 10px; /* Adds space below the bold text */
}

.get-started-btn {
    display: inline-block;
    margin-top: 20px; /* Adds space above the button */
    padding: 10px 20px; /* Adds padding inside the button */
    font-size: 18px; /* Sets font size */
    color: black; /* Button text color */
    background-color: white; /* Button background color */
    border: 2px solid black; /* Adds a black border */
    border-radius: 5px; /* Rounds the corners of the button */
    cursor: pointer; /* Changes cursor to pointer on hover */
    text-align: center; /* Centers the text */
}
.get-started-btn:hover {
    background-color: #f0f0f0; /* Light gray background on hover */
}
.download-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    margin-top: 20px; /* Adds space above the button */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-top: 20px;
    font-size: 2.5rem;
    color: #333;
}
/* Center the page description text in the middle of the page */
.page-description-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add space below the header */
    padding: 20px; /* Add padding around the description */
    text-align: center; /* Center the text horizontally */
}
/* Page Description */
.page-description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #555;
}
/* Center the error message below the header */
/* Message Container */
.message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Space below the header */
    padding: 10px; /* Add padding around the message */
    text-align: center;
    border: 1px solid #ccc; /* Add a border around the container */
    border-radius: 5px; /* Rounded corners */
    max-width: 600px; /* Limit the width of the container */
    margin-left: auto; /* Center the container horizontally */
    margin-right: auto; /* Center the container horizontally */
    background-color: #f9f9f9; /* Light background for the container */
}
/* Error and Success Messages */
.error-message {
    color: red;
    text-align: center;
    font-weight: bold;
}

.success-message {
    color: green;
    text-align: center;
    font-weight: bold;
}

/* Form Container */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* Remove extra space above the form */
    padding: 20px; /* Keep padding for the form */
}

form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Form Inputs */
form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Submit Button */
form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #0056b3;
}

/* Back Link */
.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}