body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background-color: #f7f7f7;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

header {
    background-color: #1f2a33;
    color: #fff;
    padding: 40px 0;
}

.title {
    position: relative;        /* make a containing block for layering */
    display: inline-block;     /* shrink-wrap the content */
}

  
.title img {
    display: block;            /* remove inline spacing */
}
  
.title span {
    position: absolute;       /* position relative to container */
    top: 50%;                 /* vertical alignment */
    left: 53px;              /* overlap slightly from the right edge */
    transform: translateY(-50%); /* center vertically */
    color: white;             /* text color */
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px black; /* optional, improves readability */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.tagline {
    margin-top: 10px;
    font-size: 1.2em;
    color: #b0c4d4;
}

section {
    padding: 40px 0;
    background-color: #ffffff;
}

section.alt {
    background-color: #eef2f5;
}

h2 {
    color: #1f2a33;
}

ul {
    margin-top: 15px;
}

.contact a {
    color: #1f2a33;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: #1f2a33;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.float-left {
    float: left;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
}

.logo-img {
    vertical-align: middle;
    /* or bottom/text-bottom */
    /* Or fine tune with top: 5px; */
  }