/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }

body {
    font-family: 思源黑體 , 微軟正黑體 , 蘋方黑體 , 華康麗黑體 , Helvetica , Arial , sans-serif , serif;
    background-color: #ffffff;
}


.img-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.img-fluid img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.container {
    width: 100%;
    max-width: 800px; /* 最大寬度 */
    margin: 0 auto; /* 水平置中 */
    padding: 20px; /* 邊距 */
    text-align: center; /* 文字置中 */;
}

.container h1 {
    font-size: 36px; /* 標題字體大小 */
    margin-bottom: 20px; /* 標題底部間距 */
}

.container h3 {
    font-size: 24px; /* 子標題字體大小 */
    margin-bottom: 10px; /* 子標題底部間距 */
}

.container p {
    font-size: 16px; /* 內容字體大小 */
    line-height: 1.6; /* 行高 */
    margin-bottom: 20px; /* 內容底部間距 */
}


/* Footer */
.footer-container{
    display: flex;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 70px;
    margin: 0;
    background-color: #ffffff;
}

.footer-empty{
    background-color: #ffffff;
}

.footer-info {
    display: block;
    padding: 20px;
    width: 25%;
}
.footer-about{
    display: flex;
    flex-direction: row;
    padding: 20px;
    margin-left: 100px;
    width: 75%;
}


#footer .heading{color:black;}
#footer hr, #footer .borderedbox, #footer .linklist li{border-color:rgba(255,255,255,.1);}

#footer input, #footer button{border-color:transparent;}
#footer input{color:black; background-color:#ffffff;}
#footer input:focus{border-color: black;}

.info{
    margin-block-start: 1em;
    margin-block-end: 1em;
}
  
.info-title{
    font-weight: bold;
    font-size: 26px;
}
  
.footer-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 26px;
    flex: 1;
    align-items: center;
}

.footer-title ul{
    padding: 0;
}
.footer-title ul li{
    padding-top: 1em;
}
.footer-hr{
    width: 100%;
    border: solid 2px;  
}
.footer-content{
    padding-left: 10%;
}

.footer-content {
  font-size: 18px; /* 這裡可以調整字體大小，例如調整為 14px */
  font-weight: lighter;
}

@media screen and (max-width: 1100px) {
  .footer-info, .footer-about {
    width: 100%;
  }

  .footer-about {
    display: none;
  }
  
  
  .footer-info iframe {
    display: block;
  }
}

h1, h3, h4{
    font-weight: bold; /* 將所有 h1 標籤的文字設置為粗體 */
    text-align: center;
    line-height: 42px;
    text-align: left;
    color: #003D79;    
}

h1{
    font-size: 40px;
    letter-spacing: 2px;
    color: #003D79;
    text-align: center;
}

h2{
    font-weight: bold; /* 將所有 h1 標籤的文字設置為粗體 */
    text-align: center;
    line-height: 42px;
    font-size: 45px;
  }

h3{
    font-size: 28px;
    letter-spacing: 2px;
    color: #003D79;
    text-align: center;
}


a {
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: none;
    color: black;
    }

    .introduction{
        text-align:left;
    }
