/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Custom Styles */
body {
    background-color: #fbfff3;
    font-family: Arial, sans-serif;
    color: #333333;
}

/* Ensure that the container of gpt-row is wide enough to center gpt-row */
.container {
    width: 100%; /* Adjust if needed */
    padding: 0; /* Optional: If you want to ensure there's some space on the sides */
    /* Rest of your styles */
}

/* 独立包裝大圖的CSS */
.hero-image {
    width: 100%; /* 讓圖片寬度自動調整以適應容器的寬度 */
    max-width: 100%; /* 確保圖片不會超過其自然寬度 */
    height: auto; /* 保持圖片的原始寬高比 */
    display: block; /* 消除圖片下方的空隙 */
    margin-top: 0; /* 大圖的上邊緊靠頁面的top */
    margin-bottom: 30px; /* 與下方物件的間距 */
}

/* 如果有必要，添加或调整其他类的样式 */

.gpt-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This will center the items in the row */
    gap: 50px; /* This will ensure there is a gap between the items */
    max-width: 800px; /* Maximum width of two items plus 100px */
    margin: 0 auto; /* This will center the row within its container */
}

.gpt-item {
    flex: 0 0 300px; /* This will make sure each item has a fixed width of 300px */
    box-sizing: border-box; /* This ensures that padding and border are included in the width */
    /* Rest of your styles */
    text-align: center;
}

.gpt-item img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333;
}
.gpt-name {
    font-size: 18pt;
    /*text-align: center;*/
    /* Additional styles if needed */
    display: block; /* This will make sure the link behaves like a block for centering */
    margin: 10px 0; /* Adjust the margin as needed */
}
.gpt-link {
    color: #0066cc;
    text-decoration: none;
}
.gpt-link:visited {
    color: #663399;
}
.footer {
    text-align: center;
    padding: 20px 50px;
}
.copyright {
    color: #bfa55d;
    font-size: 12px;
    margin-top: 20px;
}

/* 在重置CSS和其他樣式之後添加 */

.contact-container {
    text-align: center;
    padding: 50px 0; /* Add some padding above and below the link */
}

.contact-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 18pt; /* If you want to increase the size of the link */
}

.contact-link:visited {
    color: #663399;
}

/* 現有的 .footer 和 .copyright 樣式 */
