body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}


h1 {
    margin: 0;
    font-size: 2.5em;
}

.about_container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    border-bottom: 5px solid #FFD700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 40px;
}
.section p {
    font-size: 20px;
    line-height: 2;
}

.location {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #d32f2f;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.location:hover {
    background-color: #ffff9a;
    color: #fff;
}

.location h3 {
    color: #d32f2f;
    margin: 0;
    /* font-size: 1.2em; */
    margin-bottom: 5px;
    font-size: 20px;
}

.location p {
    margin: 0;
    color: #777;
    font-size: 20px;
}

@media (max-width: 600px) {
    .section p {
        font-size: 14px;
        line-height: 1.5;
    }
}