/* about.css */

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

#about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    padding: 1rem;
    border-radius: 1rem;
    background: rgb(255 255 255 / 90%);
}

.about-content article {
    border-radius: 2rem;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-content article h2 {
    margin-top: 0;
    color: #222;
}

.about-content article p {
    line-height: 1.6;
    margin: 15px 0;
}

.about-content article p > a[href*="tel"] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e83535;
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border-radius: 0.8rem;
    background: rgb(0 0 0 / 8%);
}
.about-content ul {
    list-style: disc inside;
    padding-left: 20px;
}

.about-content ul li {
    margin: 10px 0;
    line-height: 1.6;
}