/* 實踐領域詳情頁面樣式 */
.practice-detail {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.practice-detail .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.practice-header {
    text-align: center;
    margin-bottom: 50px;
}

.practice-header .icon {
    font-size: 60px;
    color: #b8860b;
    margin-bottom: 20px;
}

.practice-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.practice-header .amount {
    font-size: 24px;
    color: #b8860b;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
}

.practice-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

.practice-section {
    margin-bottom: 40px;
    padding: 20px;
}

.practice-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.practice-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.practice-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.practice-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-button:hover {
    background: #a67c10;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: #333;
}

.cta-button.secondary:hover {
    background: #444;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .practice-header h1 {
        font-size: 28px;
    }
    
    .practice-content {
        padding: 20px;
    }
    
    .cta-button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}
