/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #f9f4ef;
    color: #333333;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
}

header h1 {
    color: #333;
    font-size: 2em;
    margin: 0;
    font-weight: normal;
}

header p {
    font-size: 1em;
    margin: 5px 0 0;
}

/* Navigation Styles */
nav {
    text-align: center;
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
}

nav a {
    color: #555;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1em;
}

nav a:hover {
    text-decoration: underline;
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
}

/* Section Styles */
.service {
    margin-bottom: 30px;
}

/* Contact Content Styles */
.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-info {
    flex: 1;
}

/* Profile Photo Styles */
.profile-photo {
    width: 120px; /* 圖片容器的寬度 */
    height: 120px; /* 圖片容器的高度 */
    border-radius: 50%; /* 圓形效果 */
    overflow: hidden; /* 確保內容不超出圓形 */
    flex-shrink: 0; /* 防止圖片縮小 */
    border: 2px solid #ddd; /* 圓形外邊框 */
}

.profile-photo img {
    width: 100%; /* 確保圖片填滿容器 */
    height: 100%; /* 確保圖片填滿容器 */
    object-fit: cover; /* 保持圖片比例，填滿容器 */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
    color: #333333;
    font-size: 0.9em;
    border-top: 1px solid #dddddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .profile-photo {
        margin-bottom: 20px;
    }
}
