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

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

#intro {
    background-color: #e2e2e2;
    padding: 50px 0;
    text-align: center;
}

#services, #about, #contact {
    margin-top: 40px;
}

ul {
    list-style-type: square;
    margin: 0;
    padding: 0;
}

ul li {
    margin: 5px 0;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

button {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* General styles for form input fields */
input, textarea {
    background-color: #f8f9fa; /* Light grey background for input fields */
    color: #000; /* Text color for user input */
    border: 1px solid #ced4da; /* Bootstrap default border */
    padding: 10px;
    border-radius: 4px;
    width: 100%; /* Make input fields full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

/* Style the placeholders */
::placeholder {
    color: #d3d3d3; /* Lighter grey for placeholder text */
    font-size: 0.875rem; /* Smaller font size for placeholder (around 14px) */
    font-style: italic; /* Italic style for placeholder text */
}

/* Additional form styling for focus state */
input:focus, textarea:focus {
    border-color: #80bdff; /* Blue border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25); /* Slight shadow for focus */
}

/* Responsive adjustment to ensure inputs look good on all screens */
@media (max-width: 768px) {
    input, textarea {
        width: 100%; /* Ensure fields take full width on smaller screens */
    }
}

/* Custom styling for justified text */
.justify-text {
    text-align: justify;
    text-align-last: left;
}

/* Optional: Add more line height for better readability */
p.justify-text {
    line-height: 1.6;
}

