body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    background-color: #f2f7f2;
    line-height: 1.6;
}

header {
/* 	display: flex;
    align-items: center;
    justify-content: center; */
	
    background-color: #808000; /* Olive green */
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
}
/* .logo {
	margin-right: 10px;
}
header h1, header p {
	margin: 0;
} */

section {
    padding: 2em;
    margin: 1em auto;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #808000; /* Olive green */
    font-size: 2em;
    margin-bottom: 0.5em;
    border-bottom: 2px solid #808000; /* Olive green */
    padding-bottom: 0.3em;
}

.psychologist-card {
	display: flex;
}

#services ul {
  list-style-type: none;
  padding-left: 0px;
}

#services li i {
    color: #808000; /* Olive green */
}

#contact p {
    font-size: 1.1em;
}

#contact a {
    color: #808000; /* Olive green */
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #333333;
    color: #ffffff;
    margin-top: 2em;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .psychologist-card {
        flex-direction: column;
        align-items: center;
    }
    
    .office-image {
        max-width: 100%;
        height: auto;
    }
}