/* styles.css */
/* Reset some basic elements */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* Basic body styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for centering content */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header styles */
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline;
    padding: 0 20px 0 0;
}

header #branding {
    float: left;
}

header #branding h1 {
    margin: 0;
}

/* Section styles */
section {
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}

/* Section heading styles */
section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Contact styles */
.contact {
    text-align: center;
}

.contact img {
    width: 200px;
    border-radius: 50%;
}

/* Footer styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}