:root {
    --primary-blue: #040b57;
    --accent-yellow: #ffd700;
    --text-black: #333333;
    --background-white: #ffffff;
    --light-gray: #f8f8f8;
}

body {
    font-family: 'Noto Sans TC', Arial, Helvetica, sans-serif;
    line-height: 1.8;
    color: var(--text-black);
    background-color: var(--background-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.start-container {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.start-header {
    padding-top: 40px;
    text-align: center;
}

.start-header h1 {
    color: var(--primary-blue);
    font-size: 2.8em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.start-header p {
    color: var(--primary-blue);
    font-size: 1.2em;
    font-weight: bold;
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-gray); /* Slight background for sections */
    border-radius: 6px;
}

section:nth-of-type(even) {
    background-color: var(--background-white); /* Alternate section background */
}

.start-section h2 {
    color: var(--primary-blue);
    font-size: 2em;
    margin-bottom: 15px;
    border-left: 5px solid var(--accent-yellow);
    padding-left: 10px;
}

.start-section h3 {
    color: var(--primary-blue);
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
}

.start-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.start-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.start-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.start-section ul li::before {
    content: '•'; /* Custom bullet point */
    color: var(--accent-yellow);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.start-section .highlight {
    color: var(--primary-blue);
    font-weight: bold;
}

.start-section .risk-warning {
    background-color: rgba(255, 215, 0, 0.1); /* Light yellow background */
    border-left: 5px solid var(--accent-yellow);
    padding: 15px;
    margin-top: 30px;
    border-radius: 5px;
}

.start-section .risk-warning strong {
    color: var(--primary-blue);
}

.start-footer {
    padding: 30px 0;
    font-size: 0.9rem;
    text-align: center;
    background-color: var(--light-gray);
    color: var(--text-black);
}