body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.page-title span {
    color: #1d3557;
}

.card {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.card h3 {
    color: #1d3557;
    margin-bottom: 15px;
}

.card ul {
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Steps Section */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.steps span {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #1d3557;
    color: white;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

tbody tr:nth-child(even) {
    background: #f1f1f1;
}
