body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('https://highpowerelectric.ca/images/header.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

header {
    /*background: rgba(255, 255, 255, 0.8);*/
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

header .logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
}

h2 {
    color: #ad65aa;
}

h1 {
	color: #bbb;
}

h2 strong {
	color:#666;
}

h1 strong {
	color: #fff;
}
.about-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-container img {
    margin-right: 20px;
    border-radius: 8px;
    max-width: 150px;
    width: 100%;
    height: auto;
}

.about-content {
    max-width: 600px;
    width: 100%;
}

section img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    margin-top: 20px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #004080;
}

footer {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    text-align: center;
    margin-top: 20px;
	font-size: 0.7em;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-container img {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .about-content {
        max-width: 100%;
    }
}
