.current-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.current-location a {
    color: #834B41;
    text-decoration: none;
}

.current-location a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    color: #834B41;
}

.btnLookLc {
    display: inline-block;
    padding: 10px 20px;
    background-color: #834B41;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.btnLookLc:hover {
    background-color: #DD9A4B;
}

#news-module {
    background-color: #f8f8f8;
    /* padding: 20px; */
    /* border-radius: 8px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
}

#news-module img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

#news-module .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#news-module .overlay h2,
#news-module .overlay p {
    margin: 0;
}

#news-module h2 {
    margin-top: 10px;
    color: #DD9A4B;
}

#news-module p {
    color: #ffffff;
    line-height: 1.6;
}

.doctor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.doctor-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.doctor-card h1 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.doctor-card h2 {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.doctor-card h3 {
    font-size: 14px;
    color: #999;
    margin: 5px 0;
}

.doctor-card span {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.doctor-card a {
    color: #834B41;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.doctor-card a :hover {
    color: #D58D38;
}

#comment {
    margin-top: 20px;
}

#comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

#comment-form input,
#comment-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#comment-form button {
    padding: 10px 20px;
    background-color: #834B41;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#comment-form button:hover {
    background-color: #DD9A4B;
}

.comment {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.comment h4 {
    margin: 0;
    color: #834B41;
}

.comment p {
    margin: 5px 0 0 0;
    color: #666;
}