body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    border-bottom: 1px solid #000;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-brand img {
    display: flex;
    margin: 0 0%;
    height: 50%;
    width: 50%;
}

.navbar-nav .nav-link {
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    /* Rounded corners */
    color: rgb(0, 0, 0);
    padding: 1px 0px;
    cursor: pointer;
    font-size: 25px;
    font-family: FontAwesome;
}

.navbar-nav .nav-link:hover {
    border-color: #000;
    /* Black border when hovered */

}


.infoheader {
    font-family: FontAwesome;
    text-align: center;

}

.info p {
    font-family: FontAwesome;
    text-align: center;
    max-width: 40%;
}


.infochildtext {
    flex: 1;
    /* Allow the text container to grow to fill available space */
    padding: 20px;
    /* Add padding for spacing */
    text-align: center;
}

.infochildaccordian {
    flex: 1;
    /* Allow the picture container to grow to fill available space */
    padding: 20px;
    /* Add padding for spacing */
    text-align: center;
    /* Align text to the right within the picture container */
}

.aboutparent {
    text-align: center;
}

.aboutparent>* {
    padding-left: 10%;
    padding-right: 10%;
}

.aboutchildpic {
    flex: 1;
    /* Allow the text container to grow to fill available space */
    padding-bottom: 1%;

}

.aboutchildpic img {
    border: 3px solid #000;
    /* 3px black border around the image */
    filter: brightness(0.8);
    max-width: 100%;
}

.aboutchildtext {
    flex: 1;
    /* Allow the picture container to grow to fill available space */
    padding-top: 1%;

}
/* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 18px;
}

.acp-caption {
    text-align: inherit;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #000;

}