/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    color: rgb(51,51,51); /* Set default font color */
}

header {
    background-color: rgb(0, 60, 70);
    color: #fff;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 36px;
    color: #fff
}

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

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

section {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: rgb(51, 51, 51);
    text-align: center;
    font-size: 36px;
}

h2 {
    font-size: 24px;
    color: rgb(51, 51, 51);
    text-align: center;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

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

.service {
    text-align: center;
    background-color: #fff;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    color: rgb(51, 51, 51);
}

.service img {
    width: 20%;
    margin: 10px;
}

footer {
    background-color: rgb(0,60,70);
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Specific styling for endurance sports theme */
section#about {
    background-color: #f7f7f7;
}

section#about p {
    font-size: 18px;
}

/*.service {
    width: 40%;
}*/

.service h3 {
    font-size: 20px;
    color: #333;
}

.service p {
    font-size: 16px;
    color: #333;
}

/* Contact section */
section#contact {
    background-color: #f7f7f7;
    padding: 20px;
}

section#contact p {
    font-size: 18px;
}

section#contact a {
    text-decoration: none;
    color: #0073e6;
}

.hub {
    text-align: left;
    background-color: #fff;
    margin: 5px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    color: rgb(51, 51, 51);
}

.hub img {
    width: 100%;
    margin: 10px;
}

.hub h3 {
    text-align: center;
}

.hub li {
    font-size: 16px;
}

section#teamhub p {
    font-size: 18px;
}

section#hub_features, section#services {
    background-color: rgb(0,60,70);
}

section#hub_features h1, section#services h1 {
    color: #fff
}

/* Footer */
footer p {
    font-size: 16px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
}

.logo-image {
    width: 50px; /* Adjust the width as needed */
    height: auto; /* Automatically adjust height to maintain aspect ratio */
    margin-right: 10px; /* Add some spacing between the logo and company name */
}

.company-name {
    margin: 0; /* Remove default margin for h1 */
}

.social-icon {
    width: 40px; /* Set a fixed width for the social icon */
    height: auto; /* Automatically adjust height to maintain aspect ratio */
    margin-left: 5px; /* Add some spacing between text and the icon */
}