* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", "Times New Roman", "微軟正黑體", serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #cccccc;
}

/* Sections-basic */
.section {
    padding: 5rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section p {
    max-width: 800px;
    margin: 0 auto 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
}