body.contactbody {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

.container-contact {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 20px 20px 20px 65px;
}

.owner-photo {
    text-align: center;
}

.owner-photo img {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #2e7d32;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #2e7d32;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #1b5e20;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}

aside.social-media {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0 10px 30px;
}

aside.social-media a {
    color: #2e7d32;
    font-size: 20px;
    transition: transform 0.3s;
}

aside.social-media a:hover {
    transform: scale(1.2);
}

/* Keep the sidebar always visible and avoid it hiding behind content */
.social-sidebar {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    /* slight background for visibility */
    padding: 10px 5px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Resize icons slightly */
.social-sidebar img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.social-sidebar img:hover {
    transform: scale(1.2);
}