/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    margin-top: 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header Styling */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Navigation Styling */
nav {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 1.1rem;
    padding: 10px 15px;
    text-transform: uppercase;
}

nav ul li a:hover {
    background-color: #007bff;
    border-radius: 4px;
}

/* Main Content */
main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #333;
}

/* Style the header */
header h1 {
  font-size: 2rem; /* Adjust the font size of the title */
  text-align: center; /* Center the title */
  color: #333; /* Set the title color */
  display: flex;
  align-items: center; /* Vertically center the text and icons */
  justify-content: center; /* Horizontally center the text and icons */
}

/* Style the Font Awesome dollar signs */
header h1 i {
  font-size: 1.8rem; /* Adjust the size of the dollar sign icons */
  margin: 0 8px; /* Add some space between the icon and the text */
  color: green; /* Set the color of the dollar signs */
}

/* Form Styling */
form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    font-weight: bold;
    color: #333;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

form input[type="submit"] {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 4px;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Layout */
@media screen and (max-width: 800px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 20px;
        margin: 0 10px;
    }

    form {
        padding: 10px;
    }
}