/* css/support.css */
.support-page {
    background-color: #fbfbfc;
}

/* 榮耀與感恩的流金歲月主題 */
.award-section {
    position: relative;
    z-index: 2;
    margin-top: -3rem; /* 讓獎項卡片稍微往上浮疊在 Header 下方 */
}

.award-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #151515 100%);
    color: #fff;
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    border-top: 4px solid #c79e5e;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
}

/* 金色微光點綴 */
.award-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,158,94,0.15) 0%, rgba(0,0,0,0) 70%);
}
.award-card::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -50%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,158,94,0.1) 0%, rgba(0,0,0,0) 70%);
}

.award-card-icon {
    font-size: 3rem;
    color: #c79e5e;
    margin-bottom: 1.5rem;
}

.award-year {
    color: #e5bc72;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.award-title {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}

.award-desc {
    color: #a8a8a8;
    font-size: 1.1rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* 感恩信函區塊 */
.letter-section {
    background-color: #fff;
    background-image: linear-gradient(180deg, #fbfbfc 0%, #fff 100%);
}

.thank-you-letter {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 2.2;
    color: #4a4a4a;
    background: #fffcf8; 
    padding: 5rem 4rem;
    border-radius: 12px;
    border: 1px solid #f2e6d0;
    box-shadow: 0 10px 30px rgba(199,158,94,0.05);
    position: relative;
}

@media (max-width: 768px) {
    .thank-you-letter {
        padding: 3rem 2rem;
    }
}

/* 右上角的浮凸雙引號 */
.thank-you-letter::before {
    content: '\201D';
    font-size: 12rem;
    color: #c79e5e;
    position: absolute;
    top: -40px;
    right: 30px;
    opacity: 0.1;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.letter-paragraphs p {
    margin-bottom: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
    letter-spacing: 1px;
}

/* 最後一句特別處理 */
.letter-paragraphs p:last-child {
    font-weight: 700;
    color: #b38234;
    font-size: 1.4rem;
    margin-top: 3.5rem;
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

/* 底部愛心或底線裝飾 */
.letter-paragraphs p:last-child::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c79e5e;
    margin: 1.5rem auto 0;
}
