
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:"Microsoft JhengHei","PingFang TC",sans-serif;
  line-height:1.8;
  color:#2c3e50;
  background: linear-gradient(135deg, #a8edea 0%, #dff1f9 100%);
  min-height:100vh;
}
.container{
  max-width:1200px;
  margin:20px auto;
  padding:20px;
  background:white;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.header{
  text-align:center;
  padding:40px 0;
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:white;
  border-radius:15px 15px 0 0;
  margin:-20px -20px 40px -20px;
}
.header h1{
  font-size:2.5em;
  margin-bottom:15px;
  text-shadow:2px 2px 4px rgba(0,0,0,0.3);
}
.header p{
  font-size:1.2em;
  opacity:0.9;
}
.image-box{
  width:100%;
  border-radius:10px;
  overflow:hidden;
  margin:20px 0;
  text-align:center;
}
.image-box img{
  width:100%;
  border-radius:10px;
  height:auto;
}
figcaption{
  margin-top:10px;
  font-size:0.95em;
  color:#555;
}
h2{
  font-size:2em;
  color:#0072ff;
  border-bottom:3px solid #00c6ff;
  margin-top:30px;
  margin-bottom:20px;
  padding-bottom:8px;
}
h3{
  color:#009688;
  margin:20px 0 10px 0;
  font-size:1.4em;
}
p{
  margin-bottom:15px;
  font-size:1.1em;
  text-align:justify;
}
.highlight{
  background:linear-gradient(135deg,#e0f7fa,#b2ebf2);
  padding:20px;
  border-left:5px solid #00bcd4;
  border-radius:10px;
  margin:20px 0;
}
.table-box{
  overflow-x:auto;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
table{
  width:100%;
  border-collapse:collapse;
  font-size:1em;
}
th{
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:white;
  padding:12px;
  text-align:left;
}
td{
  padding:12px;
  border-bottom:1px solid #eee;
}
tr:nth-child(even){
  background:#f8f9fa;
}
.faq{
  margin-top:40px;
  background:#f5fafa;
  padding:20px;
  border-radius:10px;
}
.faq-item{
  margin-bottom:15px;
}
.q{
  background:linear-gradient(135deg,#00c6ff,#0072ff);
  color:white;
  padding:15px;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
  position:relative;
  transition:all 0.3s ease;
}
.q::after{
  content:"+";
  position:absolute;
  right:20px;
  font-size:1.6em;
  top:50%;
  transform:translateY(-50%);
  transition:transform 0.3s;
}
.q.active::after{
  transform:translateY(-50%) rotate(45deg);
}
.a{
  display:none;
  padding:15px;
  background:white;
  border-left:4px solid #00c6ff;
  border-radius:8px;
  margin-top:5px;
}
.a.show{
  display:block;
  animation:slide 0.3s ease;
}
@keyframes slide{from{opacity:0;max-height:0;}to{opacity:1;max-height:300px;}}
.contact{
  background:linear-gradient(135deg,#00bcd4,#009688);
  color:white;
  text-align:center;
  padding:30px;
  border-radius:10px;
  margin-top:40px;
}
.contact h2{
  color:white;
  border:none;
}
.contact a{
  display:inline-block;
  margin:10px;
  padding:12px 25px;
  background:white;
  color:#009688;
  border-radius:25px;
  font-weight:bold;
  text-decoration:none;
  transition:all 0.3s;
}
.contact a:hover{
  transform:translateY(-2px);
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}
@media(max-width:768px){
  .container{margin:10px;padding:15px;}
  .header h1{font-size:1.8em;}
  table{font-size:0.9em;}
}
