body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header {
    background-color: #f0f0f0;
    padding: 20px;
}

.team-container {
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

.team-member {
    width: 30%;
}

.team-member img {
    max-width: 100%;
    border-radius: 50%;
}

h1 {
    color: #333;
}

h2 {
    color: #555;
}

.linkedin-button {
    display: block;
    background-color: #0077b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin: 10px 0;
    border-radius: 5px;
}

.linkedin-button:hover {
    background-color: #005a86;
}

/* Modification here: Removed display: block from generic 'a' selector */
a {
    color: #0077b5;
    text-decoration: none;
    margin: 5px 0;
}

a:hover {
    text-decoration: underline;
}

/* Add this class for links that should look like buttons */
.button {
    display: block;
    background-color: #0077b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background-color: #005a86;
}

.seo-section {
    padding: 20px;
    background-color: #f9f9f9;
    margin: 20px auto;
    width: 80%;
}

.seo-section h2 {
    color: #333;
    margin-bottom: 15px;
}

.seo-section h3 {
    color: #555;
    margin-top: 10px;
}

.seo-section p {
    text-align: justify;
    line-height: 1.6;
}
