/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

/* Header Styling */
header {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.header-buttons {
    position: absolute;
    right: 20px;
    top: 20px;
}

.header-buttons button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.header-buttons button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Heading Styling */
h1 {
    font-size: 3em;
    margin: 0;
    text-align: center;
    color: #007bff;
}

h2 {
    color: #333;
    margin-top: 20px;
    text-align: left;
}

/* Main Content Styling */
main {
    flex: 1;
    padding: 20px;
    max-width: 800px;
    text-align: left;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Section and List Styling */
section {
    margin: 20px 0;
    text-align: left;
}

ul, ol {
    margin-left: 20px;
    text-align: left;
}

/* Footer Styling */
footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styling in the Content */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Link Styling */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

.email-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-form input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    max-width: 100%;
    margin-right: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.email-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 123, 255, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.email-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 15px;
        max-width: 95%;
    }

    .header-buttons {
        top: 10px;
        right: 10px;
    }

    .header-buttons button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
