/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: #0077c2;
}

ul {
    list-style: none;
}

header {
    background-color: #0077c2;
    padding: 10px 20px;
}

h1, h2, h3 {
    color: #0077c2;
}

nav ul {
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav li:last-child {
    margin-right: 0;
}

nav a {
    color: #fff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2, h3 {
    margin-bottom: 20px;
}

.hero-image {
    background-image: url('pwdynamics-hero-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-image h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.services ul li:before {
    content: "\2022";
    color: #0077c2;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.services ul li {
    margin-bottom: 10px;
}

.portfolio .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio .gallery img {
    width: 300px;
    margin: 20px;
    border: 5px solid #fff;
}

.about-us p:last-child {
    margin-bottom: 0;
}

.contact-us form label {
    display: block;
    margin-bottom: 5px;
}

.contact-us form input[type="text"],
.contact-us form input[type="email"],
.contact-us form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-us form textarea {
    height: 150px;
}

.contact-us form input[type="submit"] {
    background-color: #0077c2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-us form input[type="submit"]:hover {
    background-color: #005e9c;
}

/* Custom Styles */

header nav a:hover {
    color: #005e9c;
}

.services h3 {
    color: #0077c2;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.about-us p {
    margin-bottom: 20px;
}

.contact-us h3 {
    color: #0077c2;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-us p {
    margin-bottom: 20px;
}

footer {
    background-color: #0077c2;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}
