@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200..900&display=swap');


/* ==========================================================================
   全域基礎設定 (Base Reset)
   ========================================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  /* 選用：讓 Mac 系統下的字體渲染更滑順 */
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  border: none;
  vertical-align: middle;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

table tr td,
table tr th {
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ==========================================================================
   表單設定 (Forms)
   ========================================================================== */
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
  outline: none;
  /* 移除點擊時的預設藍框，建議需另外設計 :focus 樣式以維持無障礙體驗 */
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  border: 1px solid #ccc;
  padding: 8px 12px;
  color: #666666;
  border-radius: 0;
  /* 確保在 iOS 上不會有預設圓角 */
}

textarea {
  resize: vertical;
  /* 建議：只允許垂直調整大小，避免破壞版面 */
}

/* 移除按鈕預設外觀 */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  /* iOS Safari */
  appearance: none;
  /* 標準現代語法 */
  border: none;
  /* 建議：通常自訂按鈕會需要移除預設邊框，視需求開啟 */
  background: transparent;
  /* 建議：重置背景色 */
}


/* ==========================================================================
   行動版設定
   ========================================================================== */
#navmenu {
  display: none;
}

#menu-btn {
  display: none;
}

#toolbarnav {
  display: none;
}


/* ==========================================================================
   主內容
   ========================================================================== */
#w {
  margin: 0;
}

#w #pagebody {
  margin: 0;
}

#w #pagebody #content {
  padding-top: 100px;
}


/* ==========================================================================
   Header 基礎設定
   ========================================================================== */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 250;
  background: #fff;
  box-shadow: 0 15px 30px -2px rgba(0, 0, 0, 0.1);
}

header.fix {
  height: 70px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(to right, #dfba86, #bf782a);
}


/* ==========================================================================
   Logo 設定
   ========================================================================== */
#logo {
  position: absolute;
  top: 15px;
  left: 15px;
}

header.fix #logo {
  background-image: none;
  transition: all 0.3s ease-in-out;
  padding-left: 0;
  top: 5px;
  left: 15px;
}

header.fix #logo img {
  width: 70%;
}

header #logo h1,
header #logo h2 {
  font-size: 2rem;
}

#logo a {
  display: block;
  padding-top: 5px;
  color: #6d6d6d;
  font-weight: 500;
}


/* ==========================================================================
   導覽列 (Navigation)
   ========================================================================== */
nav#web-navmenu {
  position: absolute;
  top: 30px;
  right: 25px;
  z-index: 100;
}

header.fix nav#web-navmenu {
  top: 5px;
  right: 15px;
}

header.fix nav li,
header.fix nav li a {
  color: #fff;
}

/* --- 第一層主選單 --- */
ul.navigation {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.navigation li {
  display: inline-block;
  position: relative;
  color: #434343;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 55px;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

ul.navigation li a {
  display: block;
  color: #434343;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul.navigation li:hover>a {
  color: #8c7663;
}

/* --- 第二層下拉選單（預設：繼承父層寬度） --- */
ul.navigation li>ul {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  padding: 8px 0;
  background: #433d3b;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

ul.navigation li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

ul.navigation li>ul>li {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  text-align: center;
  line-height: 38px;
  padding: 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

ul.navigation li>ul>li:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* --- 額外設定：特定需要超出父層寬度的下拉選單（診療項目） --- */
ul.navigation li>ul.wide-dropdown {
  left: 50%;
  transform: translate(-50%, 10px);
  width: 200px;
  padding: 10px 0;
}

ul.navigation li:hover>ul.wide-dropdown {
  transform: translate(-50%, 0);
}

ul.navigation li>ul.wide-dropdown>li {
  padding: 0;
  line-height: 40px;
  width: 100%;
}

ul.navigation li>ul.wide-dropdown>li a {
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

ul.navigation li>ul.wide-dropdown>li:hover {
  background: rgba(255, 255, 255, 0.08);
}

ul.navigation li>ul.wide-dropdown>li:hover a {
  color: #fff;
}

.addheight:hover {
  background: transparent;
}

.addheight ul li a {
  color: rgba(255, 255, 255, 0.85);
}


/* ==========================================================================
   統一及公用設定
   ========================================================================== */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(../images/loader.gif) center no-repeat #fbfbfb;
}

.rel {
  position: relative;
}

.container {
  margin: 0 auto;
  padding: 10px;
  max-width: 1200px;
}

.web {
  display: block;
}

.mobile {
  display: none;
}


/* ==========================================================================
   輪播 Swiper 樣式
   ========================================================================== */
body .swiper-button-prev,
body .swiper-button-next {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  color: #9e2a2b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

body .swiper-button-prev::after,
body .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

body .swiper-button-prev:hover,
body .swiper-button-next:hover {
  background-color: #9e2a2b;
  color: #ffffff;
  border-color: #f39c12;
}

body .swiper {
  --swiper-theme-color: #f39c12;
  --swiper-pagination-bullet-inactive-color: #e6d49a;
  --swiper-pagination-bullet-inactive-opacity: 0.7;
  --swiper-pagination-bullet-size: 9px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}

body .swiper-pagination-bullet {
  transition: all 0.3s ease;
}

body .swiper-pagination-bullet:hover {
  background-color: #9e2a2b;
  opacity: 1;
}

body .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 5px;
}

body .swiper-pagination {
  bottom: 24px;
}


/* ==========================================================================
   首頁 - 關於我們
   ========================================================================== */
#index-about {
  padding: 80px 0;
  background-color: #ffffff;
}

#index-about .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

#index-about .about-image {
  flex: 1;
  max-width: 50%;
}

#index-about .about-image img {
  width: 100%;
  height: auto;
  display: block;
}

#index-about .about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#index-about .about-content .sub-title {
  font-size: 1.5rem;
  color: #c9a063;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

#index-about .about-content .main-title {
  font-size: 1.5rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-family: "Noto Serif SC", serif;
}

#index-about .about-content .concept-group {
  margin-bottom: 5px;
  font-weight: 800;
}

#index-about .about-content .concept-item {
  margin-bottom: 12px;
  letter-spacing: 1px;
}

#index-about .about-content .text-gold {
  color: #7d8454;
}

#index-about .about-content .text-teal {
  color: #3495a0;
}

#index-about .about-content .desc-blockquote {
  border-left: 2px solid #e0e0e0;
  padding-left: 25px;
  margin-left: 5px;
}

#index-about .about-content .desc-blockquote p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

#index-about .about-content .desc-blockquote p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   首頁 - 服務項目
   ========================================================================== */
#index-service {
  padding: 80px 0;
  background-color: #f9f8f8;
  text-align: center;
}

#index-service .service-header {
  margin-bottom: 50px;
}

#index-service .service-header .main-title {
  font-size: 2rem;
  color: #c9a063;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 500;
}

#index-service .service-header .sub-title {
  font-size: 1rem;
  color: #666666;
  letter-spacing: 1px;
}

#index-service .swiper-wrapper-outer {
  position: relative;
  padding: 0 50px;
}

#index-service .service-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#index-service .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(136, 118, 83, 0.1);
}

#index-service .service-card .card-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#index-service .service-card .card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#index-service .service-card .card-title {
  font-size: 1.25rem;
  color: #333333;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#index-service .service-card .card-desc {
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: center;
}

#index-service .swiper-button-prev,
#index-service .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin-top: 0;
  color: #c9a063;
  transition: color 0.3s ease;
  cursor: pointer;
}

#index-service .swiper-button-prev {
  left: 0;
}

#index-service .swiper-button-next {
  right: 0;
}

#index-service .swiper-button-prev::after,
#index-service .swiper-button-next::after {
  font-size: 24px;
}

#index-service .swiper-button-prev:hover,
#index-service .swiper-button-next:hover {
  color: #8c7653;
}


/* ==========================================================================
   首頁 & 內頁 - 最新消息
   ========================================================================== */
#index-news {
  padding: 80px 0;
}

#news {
  padding: 40px 0;
}

#index-news .main-title,
#news .main-title {
  font-size: 2rem;
  color: #c9a063;
  letter-spacing: 2px;
  margin: 0 0 50px 0;
  font-weight: 500;
  text-align: center;
}

#index-news .container,
#news .container {
  display: flex;
  flex-direction: column;
}

#index-news .news-block,
#news .news-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

/* --- 最新消息：左側分類名稱 --- */
#index-news .news-label,
#news .news-label {
  width: 200px;
  flex-shrink: 0;
  padding: 0 0 0 25px;
  position: relative;
}

#index-news .news-label .label-title,
#news .news-label .label-title {
  font-size: 1.3rem;
  color: #616161;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

#index-news .news-label::before,
#news .news-label::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 32px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #c9a063;
}

/* --- 最新消息：右側內容 --- */
#index-news .news-content-box,
#news .news-content-box {
  flex: 1;
}

#index-news .news-list,
#news .news-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

#index-news .news-item,
#news .news-item {
  border-bottom: 1px solid #f5f5f5;
}

#index-news .news-item a,
#news .news-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

/* --- 樣式一：有圖文章 (.item-featured) --- */
#index-news .item-featured,
#news .item-featured {
  border-bottom: 1px solid #eeeeee;
}

#index-news .item-featured a,
#news .item-featured a {
  gap: 30px;
  padding-bottom: 35px;
  padding-top: 0;
}

#index-news .featured-img,
#news .featured-img {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

#index-news .featured-img img,
#news .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#index-news .item-featured:hover .featured-img img,
#news .item-featured:hover .featured-img img {
  transform: scale(1.05);
}

#index-news .featured-title,
#news .featured-title {
  font-size: 1.35rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  width: 100%;
}

#index-news .item-featured:hover .featured-title,
#news .item-featured:hover .featured-title {
  color: #c9a063;
}

#index-news .more-btn,
#news .more-btn {
  font-size: 0.85rem;
  color: #999999;
  border: 1px solid #cccccc;
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#index-news .item-featured:hover .more-btn,
#news .item-featured:hover .more-btn {
  color: #ffffff;
  background-color: #c9a063;
  border-color: #c9a063;
}

/* --- 樣式二：純文字條列文章 --- */
#index-news .news-item:not(.item-featured) a,
#news .news-item:not(.item-featured) a {
  padding: 20px 0;
  gap: 40px;
}

#index-news .news-item:not(.item-featured) .news-date,
#news .news-item:not(.item-featured) .news-date {
  width: 90px;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: #999999;
  font-family: Arial, sans-serif;
}

#index-news .news-item:not(.item-featured) .news-title,
#news .news-item:not(.item-featured) .news-title {
  font-size: 1rem;
  color: #555555;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

#index-news .news-item:not(.item-featured):hover .news-title,
#news .news-item:not(.item-featured):hover .news-title {
  color: #c9a063;
}

/* ==========================================================================
   首頁底部滿版視差圖
   ========================================================================== */
#index-bottom-contact {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url('../images/bg01.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#index-bottom-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 63, 22, 0.45);
  z-index: 1;
}

#index-bottom-contact .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

#index-bottom-contact .cta-title {
  font-size: 2.25rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
   內頁共用設定 (Inner Pages)
   ========================================================================== */

/* --- 內頁編輯器 --- */
.ckediter {
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.ckediter img {
  max-width: 100%;
  height: auto !important;
}

/* 排除掉 .ckediter 裡的內容，讓編輯器恢復預設 */
.ckediter h1,
.ckediter h2,
.ckediter h3,
.ckediter h4,
.ckediter h5,
.ckediter h6,
.ckediter ul,
.ckediter ol,
.ckediter li {
  margin: revert;
  padding: revert;
}


#main {
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 0 15px;
  width: 100%;
}

#main .container {
  width: 100%;
  max-width: 100%;
}

#main .ckediter p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: 0.5px;
}

#main .ckediter h2 {
  font-size: 1.25rem;
  color: #333333;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
  letter-spacing: 1px;
}

#main .ckediter h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 4px;
  height: 70%;
  background-color: #b87b42;
  border-radius: 2px;
}

#main .ckediter h3 {
  font-size: 1.2rem;
  color: #b87b42;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* 排除首項頂部留白：如果客戶一開頭就放 h2 或 h3，自動取消上方間距防止破版 */
#main .ckediter h2:first-child,
#main .ckediter h3:first-child {
  margin-top: 0;
}




/* --- 回上頁 --- */
.back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 50px 10px;
  cursor: pointer;
}

/* --- 麵包屑 --- */
#sitemap ul {
  text-align: right;
  padding: 15px 15px 5px 0;
}

#sitemap li {
  display: inline-block;
  font-size: 0.9em;
  color: #666666;
  padding: 0 5px;
}

#sitemap li:after {
  content: " / ";
  margin-left: 5px;
  color: #dbad89;
}

#sitemap li:last-child:after {
  content: "  ";
}

#sitemap li a {
  color: #666666;
}

#sitemap li a:hover {
  color: #b7794a;
}

#sitemap li:last-child {
  border-right: none;
  color: #bd9474;
}

/* --- 分頁 --- */
#page {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: sans-serif;
}

#page .page-numbers {
  display: inline-block;
  color: #999;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 10px;
  margin: 0 3px;
  transition: color 0.2s ease;
}

#page a.page-numbers:hover {
  color: #c83c23;
}

#page .page-numbers.current {
  color: #333;
  font-weight: bold;
  cursor: default;
  pointer-events: none;
}

#page .page-numbers i {
  font-size: 12px;
  vertical-align: middle;
}

/* --- 內頁上方背景 --- */
.bg-in {
  background-image: url('../images/bg-in.jpg');
  background-attachment: fixed;
  background-position: 80px 0 0 0;
  background-repeat: no-repeat;
}

/* ==========================================================================
   多頁共用-標題與下拉選單/標題與日期
   ========================================================================== */
.title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 15px;
}

h1.title,
h2.title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #cf9a60;
  text-align: center;
  padding: 50px 0 10px 0;
  letter-spacing: 5px;
  font-family: "Noto Serif SC", serif;
  margin: 0;
}

/* 消息列表頁下拉選單外殼 */
.category-select {
  position: absolute;
  right: 15px;
  bottom: 12px;
  display: inline-block;
}

.category-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: linear-gradient(to left, #c2bebc 35px, transparent 35px);
  color: #555555;
  border: 1px solid #c2bebc;
  border-radius: 4px;
  padding: 8px 50px 8px 15px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
  font-size: 14px;
}

.category-select select:hover {
  border-color: #a8a4a2;
}

.category-select select option {
  background-color: #ffffff;
  color: #333333;
}

.category-select::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 消息內頁日期 */
.title-wrap .post-date {
  font-size: 14px;
  color: #888888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  padding-bottom: 20px;
}

.title-wrap .post-date i {
  margin-right: 6px;
  color: #cf9a60;
  font-size: 13px;
}

/*內頁h1標題*/
h1.title-inner {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b342d;
  font-weight: 500;
  margin: 50px 0 0 0;
  padding: 10px;
  letter-spacing: 1px;
}


/* ==========================================================================
   關於森澤 - 上半部：品牌起源
   ========================================================================== */
#about-intro {
  background: url('../images/about-bg.webp') no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

#about-intro .container {
  display: flex;
  justify-content: flex-start;
}

#about-intro .intro-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  padding: 50px 60px;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#about-intro .intro-card h2 {
  font-size: 26px;
  color: #33;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

#about-intro .intro-card h2 span {
  font-size: 18px;
  color: #666;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
}

#about-intro .brand-define {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

#about-intro .brand-define .color-brown {
  color: #b87b42;
  font-weight: 600;
}

.brand-define .color-blue {
  color: #527a94;
  font-weight: 600;
}

#about-intro .intro-desc p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}


/* ==========================================================================
   關於森澤 - 下半部：醫療精神
   ========================================================================== */
#about-spirit {
  padding: 100px 0;
  overflow: hidden;
}

#about-spirit .spirit-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 左側：雙圖錯位配置 */
#about-spirit .spirit-images {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

#about-spirit .spirit-images .img-left {
  width: 45%;
  margin-top: 100px;
}

#about-spirit .spirit-images .img-right {
  width: 55%;
  margin-top: -60px;
}

#about-spirit .spirit-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 右側：文字內容區 */
#about-spirit .spirit-info {
  flex: 1;
}

#about-spirit .spirit-info h3 {
  font-size: 28px;
  color: #33;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#about-spirit .spirit-info h4 {
  font-size: 16px;
  color: #b87b42;
  font-weight: normal;
  margin-bottom: 35px;
  line-height: 1.6;
}

#about-spirit .spirit-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about-spirit .spirit-info ul li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #666;
  display: flex;
  align-items: flex-start;
}

#about-spirit .spirit-info ul li::before {
  content: "▪";
  color: #b87b42;
  margin-right: 10px;
  font-size: 12px;
}

#about-spirit .spirit-info ul li strong {
  color: #33;
  font-weight: 600;
  white-space: nowrap;
}

/* ==========================================================================
   森澤診所 - 環境與設備
   ========================================================================== */

/* 基礎變數定義 (可複寫或與主色系融合) */
:root {
  --clinic-gold: #C5A880;
  --clinic-dark: #3A3A3A;
  --clinic-bg: #FDFCFB;
  --text-main: #4A4A4A;
  --text-muted: #777777;
  --white: #ffffff;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 區塊共通標題 */
.page-title {
  text-align: center;
  font-size: 32px;
  color: var(--clinic-dark);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.page-title span {
  display: block;
  font-size: 14px;
  color: var(--clinic-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 6px;
  font-weight: 500;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================
  環境介紹 (#tour-environment)
   ========================================== */
#tour-environment {
  padding: 80px 0;
}

#tour-environment .env-swiper-container {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#tour-environment .env-slide {
  display: flex !important;
  flex-direction: row;
  align-items: stretch;
  height: auto;
  background-color: var(--white);
}

#tour-environment .slide-img-box {
  flex: 0 0 65%;
  position: relative;
  overflow: hidden;
  height: 520px;
}

#tour-environment .slide-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

#tour-environment .env-slide:hover .slide-img-box img {
  transform: scale(1.03);
}

#tour-environment .slide-info {
  flex: 0 0 35%;
  background-color: var(--clinic-bg);
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

#tour-environment .slide-number {
  font-size: 15px;
  color: var(--clinic-gold);
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}

#tour-environment .slide-info h3 {
  font-size: 26px;
  color: var(--clinic-dark);
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.4;
}

#tour-environment .slide-info h3 span {
  display: block;
  font-size: 13px;
  color: #A0A0A0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  font-weight: 400;
}

#tour-environment .slide-info p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.8;
  text-align: justify;
}

/* 客製化前後切換按鈕 */
#tour-environment .slider-arrows {
  position: absolute;
  bottom: 45px;
  right: 45px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

#tour-environment .slider-arrows button {
  background: transparent;
  border: 1px solid var(--clinic-gold);
  color: var(--clinic-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  outline: none;
}

#tour-environment .slider-arrows button:hover {
  background-color: var(--clinic-gold);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

/* ==========================================
   醫療設備 (#tour-equipment)
   ========================================== */
#tour-equipment .page-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #cf9a60;
  text-align: center;
  padding: 50px 0 10px 0;
  letter-spacing: 5px;
  font-family: "Noto Serif SC", serif;
  margin: 0 0 50px 0;
}

#tour-equipment {
  padding: 100px 0;
  border-top: 1px solid #f0f0f0;
}

#tour-equipment .equipment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
  gap: 60px;
}

#tour-equipment .equipment-row:last-child {
  margin-bottom: 0;
}

#tour-equipment .equipment-row.row-reverse {
  flex-direction: row-reverse;
}

#tour-equipment .equipment-img {
  flex: 0 0 48%;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

#tour-equipment .equipment-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

#tour-equipment .equipment-row:hover .equipment-img img {
  transform: scale(1.015);
}

#tour-equipment .equipment-info {
  flex: 0 0 46%;
}

#tour-equipment .eq-tag {
  display: inline-block;
  background-color: #EFEBE5;
  color: #A68962;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

#tour-equipment .equipment-info h3 {
  font-size: 30px;
  color: var(--clinic-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

#tour-equipment .eq-subtitle {
  color: var(--clinic-gold);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

#tour-equipment .eq-desc {
  color: var(--text-main);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 30px;
  text-align: justify;
}

#tour-equipment .eq-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#tour-equipment .eq-features span {
  font-size: 15px;
  color: var(--clinic-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
}

#tour-equipment .eq-features .icon-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--clinic-gold);
  border-right: 2px solid var(--clinic-gold);
  transform: rotate(45deg);
  margin-right: 12px;
  flex-shrink: 0;
}


/* ==========================================================================
   醫療團隊
   ========================================================================== */
#doctor {
  padding: 40px 0 80px 0;
}

#doctor .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#doctor .doctor-item {
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  width: 100%;
}

/* 左側：照片比例 */
#doctor .doctor-photo {
  flex: 0 0 35%;
  position: relative;
  min-height: 420px;
}

#doctor .doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* 右側：完整資訊包裝 */
#doctor .doctor-info {
  flex: 1;
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
}

/* 醫師頭部：名字與標籤並排 */
#doctor .doctor-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

#doctor .doctor-header h2 {
  font-size: 24px;
  color: #333333;
  font-weight: 600;
  margin: 0;
}

.doctor-header h2 .title {
  font-size: 16px;
  color: #666666;
  font-weight: normal;
  margin-left: 5px;
}

#doctor .clinic-badge {
  background-color: #d1823d;
  color: #ffffff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

#doctor .doctor-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

#doctor .content-block h4 {
  color: #d1823d;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

#doctor .content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#doctor .content-block ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

#doctor .content-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #999999;
  font-size: 14px;
}


/* ==========================================================================
   就醫指南 
   ========================================================================== */
#guide-banner {
  background: url('../images/guide-banner-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 280px;
  position: relative;
}

#guide-banner .banner-mask {
  background-color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#guide-banner h1,
#guide-banner h2 {
  font-size: 1.8rem;
  color: #333333;
  font-weight: 500;
  letter-spacing: 5px;
  font-family: "Noto Serif SC", serif;
}

#guide-content {
  padding: 80px 0;
  background-color: #ffffff;
}

#guide-content .container {
  max-width: 1100px;
}

#guide-content .guide-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section-title i::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
  color: #ffffff;
  background-color: #c59b6d;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  vertical-align: middle;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.icon-arrow::before {
  content: "\f061";
  font-weight: 900;
}

.icon-car::before {
  content: "\f1b9";
  font-weight: 900;
}

/* 就醫指南 - 門診時間表 (Table)*/
.table-responsive {
  width: 100%;
  overflow-x: auto;
  padding-left: 28px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}

.schedule-table th {
  background-color: #bfa895;
  color: #ffffff;
  font-weight: normal;
  padding: 12px;
  border: 1px solid #ffffff;
}

.schedule-table th:first-child {
  background-color: #d1a17b;
}

.schedule-table td {
  border: 1px solid #f1f1f1;
  padding: 15px 10px;
  color: #555555;
  height: 70px;
  vertical-align: middle;
}

.schedule-table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.schedule-table tbody tr:nth-child(odd) td {
  background-color: #ffffff;
}

.schedule-table td.time-col {
  background-color: #e5be9e !important;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

.schedule-table .time-num {
  font-size: 12px;
  font-weight: normal;
}

/* 特別標記 */
.highlight-time {
  color: #c57b3e;
  font-size: 10px;
  display: block;
  margin-top: 4px;
}


.guide-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.traffic-info p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.traffic-info strong {
  color: #333;
}

.map-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


/* ==========================================================================
   診療項目
   ========================================================================== */
#service-banner {
  background: url('../images/service-banner-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 450px;
  position: relative;
}

#service-banner .banner-mask {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#service-banner h1,
#service-banner h2 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 5px;
  font-family: "Noto Serif SC", serif;
}


/*診療項目列表 */
#service-list {
  padding: 60px 0 100px 0;
}

#service-list .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

#service-list .service-item {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#service-list .service-item a {
  display: block;
  width: 100%;
  height: 100%;
}

#service-list .service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(197, 155, 109, 0.1);

}

/* Icon 區塊 */
#service-list .item-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#service-list .item-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#service-list .service-item h2 {
  font-size: 1.5rem;
  color: #b87b42;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

#service-list .service-item p {
  font-size: 1rem;
  color: #777777;
  line-height: 1.7;
  margin: 0;
  padding: 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ==========================================================================
   診療項目內頁
   ========================================================================== */
#service-detail-header {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

#service-detail-header .container {
  max-width: 960px;
}

#service-detail-header .detail-title-card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#service-detail-header .card-icon-wrap {
  flex: 0 0 200px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

#service-detail-header .card-icon-wrap img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

#service-detail-header .card-text-wrap {
  flex: 1;
  background-color: #ebe2da;
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#service-detail-header .card-text-wrap h1 {
  font-size: 24px;
  color: #b87b42;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

#service-detail-header .card-text-wrap p {
  font-size: 1.1rem;
  color: #7a6e65;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   自費檢查
   ========================================================================== */
#inter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
  margin: 25px 0 80px 0;
}

#inter-list .inter-item {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 60px;
  position: relative;
}

#inter-list .inter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#inter-list .inter-item h2 {
  margin: 0;
  background: #f8f9fa;
  border-left: 5px solid #b0665d;
  padding: 15px;
  font-size: 1.4em;
  color: #333;
}

#inter-list .inter-item p {
  padding: 15px;
  color: #666;
  line-height: 1.6;
  font-size: 1em;
  margin: 0;
}

#inter-list .btn-group {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

#inter-list .btn-group a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9em;
  transition: opacity 0.2s;
}

#inter-list .btn-detail {
  background: #f0f0f0;
  color: #555;
}

#inter-list .btn-booking {
  background: #b0665d;
  color: #fff;
}

#inter-list .btn-group a:hover {
  opacity: 0.8;
}


/* ==========================================================================
   衛教文章
   ========================================================================== */
#article-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  width: 100%;
  box-sizing: border-box;
}

#article-list * {
  box-sizing: border-box;
}

#article-list .article-item {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.3s ease;
}

#article-list .article-item:hover {
  background-color: #faf6f0;
}

#article-list .article-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  text-decoration: none;
  color: #555555;
  transition: color 0.3s ease;
}

#article-list .article-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding-right: 32px;
  flex-grow: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#article-list .article-item:hover .article-title {
  color: #8c5730;
  transform: translateX(6px);
}

#article-list .article-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #cf9a60;
  line-height: 1;
  min-width: 70px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

#article-list .article-date small {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 400;
  color: #cf9a60;
}

#article-list .article-item:hover .article-date {
  color: #cf9a60;
}

#article-list .article-item:hover .article-date small {
  color: #cf9a60;
}



/* ==========================================================================
   常見QA
   ========================================================================== */
#qa-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  margin: 25px 0 80px 0;
}

#qa-list * {
  box-sizing: border-box;
}

.qalist-item {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px 30px 50px 30px;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qalist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.qalist-question {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.qalist-q-prefix {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-right: 8px;
  line-height: 1.4;
}

.qalist-question h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}

.qalist-answer {
  display: flex;
  align-items: flex-start;
}

.qalist-a-prefix {
  font-size: 16px;
  font-weight: 500;
  color: #a0aec0;
  margin-right: 12px;
  line-height: 1.6;
}

.qalist-intro {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qalist-more-btn {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #b0b0b0;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 4px 18px;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.qalist-item:hover .qalist-more-btn {
  color: #cf9a60;
  border-color: #cf9a60;
  background-color: #fdfaf7;
}


/*常見問題內頁*/
#qa-detail {
  width: 100%;
  box-sizing: border-box;
}

#qa-detail * {
  box-sizing: border-box;
}

#qa-detail .qa-meta {
  font-size: 14px;
  color: #a0aec0;
  margin: 0 0 25px 10px;
}

#qa-detail .qa-meta span {
  margin-right: 15px;
}

#qa-detail .qa-summary-box {
  width: 100%;
  background-color: #f7f7f7;
  padding: 24px 30px;
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 35px;
}


/* ==========================================================================
   尾部 (Footer)
   ========================================================================== */
footer {
  padding: 0 15px 15px 0;
  background: #f6f6f6;
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}

footer .column-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 5px 5px 25px;
}

footer .column-right {
  display: flex;
  flex-direction: column;
  padding: 25px 25px 5px 5px;
}

#footernav li {
  font-size: 1rem;
  padding-bottom: 8px;
  font-style: normal;
}

#footernav li a {
  color: #666666;
}

#footernav li a.footer-phone {
  color: #bf7c4f;
  font-weight: 600;
  font-size: 1.5em;
}

#footernav li.footer-hours {
  margin-top: 15px;
  line-height: 1.5;
}

#footernav li .footer-hours-label {
  color: #fff;
  background: #c3c3c3;
  padding: 2px 6px;
  font-size: 0.9em;
  margin-right: 5px;
  border-radius: 3px;
}


/* ==========================================================================
   頁腳版權宣告 (Bottom Copyright)
   ========================================================================== */
#bottom {
  width: 100%;
  background: #626262;
  padding: 10px;
  color: #eeeeee;
  text-align: center;
  font-size: 0.8em;
}