body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

#business-photo img {
    max-width: 100%;
    height: auto;
    display: block;
}

#contact-info a {
    color: #005f5f;
    text-decoration: none;
}

#contact-info p {
    background: #fff;
    padding: 5px;
    text-align: center;
}

#contact-form {
    background: #fff;
    padding: 20px;
    margin: auto;
    width: calc(100% - 40px);
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

#contact-form h2 {
    color: #005f5f;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group label {
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group input[type="submit"] {
    padding: 10px;
    background-color: #005f5f;
    color: white;
    border: 0;
    cursor: pointer;
    border-radius: 4px;
}

.form-group input[type="submit"]:hover {
    background-color: #004c4c;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}
