/* General reset and box sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Logo container styling */
.about_column {
    /*width: auto;*/
    /*height: 150px;*/
    /*margin: 0 0;*/
    display: inline;
    justify-content: space-between;
    align-items: center;
    /*padding: 20px;*/
    background-color: #f8f9fa; /* Optional background color */
}

/* Logo image styling */
.u-logo-image {
    width: 550px;
    height: 200px;
    object-fit: contain; /* Ensures image maintains aspect ratio */
    display: block;
}

/* Logo header text styling */
.about_column p {
    font-family: Quiche;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
    flex-grow: 1;
}

/* Navigation styling */
.u-nav {
    display: inline-flex;
    list-style: none;
    gap: 6px;
}

.u-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 4px 12px;
    transition: color 0.3s ease;
}

.u-nav-link:hover {
    color: #007bff; /* Hover color */
}

/* Content area styling */
#about_bodycontent {
    /*max-width: 900px;*/
    margin: 40px auto;
    padding: 35px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional shadow */
}

#about_bodycontent h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

#about_bodycontent p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
    margin-bottom: 20px;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  left: 50;
  background-color: white;
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: green;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
}