/* styles.css */

/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

header {
    background-color: #0074D9;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 a {
    text-decoration: none;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #0074D9;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #0056b3;
}

main {
    padding: 40px 0;
    text-align: center;
}

section {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    text-align: left;
}

section h2 {
    font-size: 32px;
    color: #0074D9;
    margin-bottom: 20px;
}

section p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.centered-image {
    display: block;
    margin: 0 auto;
}

.contact-form {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form h2 {
    font-size: 32px;
    color: #0074D9;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #0074D9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0074D9;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: #0056b3;
}

.social-icons {
    margin-top: 20px;
    text-align: center;
}

.social-icons a {
    text-decoration: none;
    color: #0074D9;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0056b3;
}

footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    color: #333;
    text-align: center;
}

footer p {
    font-size: 14px;
}