body {
    font-family: Arial, sans-serif;
    background-color: #FFB6C1; /* Light Pink */
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

header {
    background-color: #FFB6C1; /* Light Pink */
    color: #000000; /* Black for clarity */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-family: 'Brush Script MT', cursive;
    font-size: 3em;
    margin: 0;
    color: #4682B4; /* Steel Blue */
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

header nav ul li {
    display: inline;
    margin-right: 10px;
}

header nav ul li a {
    color: white; /* Unified text color */
    text-decoration: none;
    font-size: 1.2em;
    text-align: center;
    padding: 14px 16px;
}

header nav ul li a:hover {
    background-color: #111;
}

.active {
    background-color: #4682B4;
}

.main-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: #fff;
}

.main-content img {
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.service-list {
    max-width: 100%;
    padding: 10px;
}

.service-list h2 {
    color: #4682B4; /* Steel Blue */
    font-size: 2em;
}

.service-list ul {
    list-style-type: none;
    padding: 0;
}

.service-list ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

.service-list ul li::before {
    content: '✔';
    margin-right: 10px;
    color: #FFD700; /* Gold */
}

footer {
    background-color: #4682B4; /* Steel Blue */
    color: #FFD700; /* Gold */
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    text-align: center;
    margin: 20px 0;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #000000; /* Steel Blue */
    text-decoration: none;
}

.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    max-width: 100%;
    height: auto;
}

/* Form-specific styles */
form {
    border: 1px solid #FFB6C1; /* Light Pink border */
    background-color: #FFF0F5; /* Light Pink background */
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
}

fieldset {
    border: 1px solid #4682B4; /* Steel Blue border */
    background-color: #F0F8FF; /* Very light blue background */
    padding: 10px;
    margin-bottom: 20px;
}

label {
    display: inline-block;
    width: 150px; /* Set width for inline labels */
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
    width: calc(100% - 160px); /* Adjust width for inline labels */
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
}

input[type="checkbox"],
input[type="submit"] {
    display: inline-block;
    margin-top: 10px;
}

input[type="submit"] {
    background-color: #FFD700; /* Gold background */
    color: #FFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
}

input[type="submit"]:hover {
    background-color: #f1c40f; /* Darker gold */
}

/* New style added for form labels */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* New style for required asterisk */
.required {
    color: red;
}

/* Example change to existing form formatting */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

/* Comment identifying the new style */
/* This style improves the appearance of form labels */
