.page-content {
    padding: 4rem 0;
    background: var(--white);
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-gold);
}

.stages-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
}

.stages-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stage-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stage-item h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stage-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.table-section {
    margin: 4rem 0;
}

.journey-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.journey-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: var(--white);
}

.journey-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.journey-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
    color: var(--text-dark);
}

.journey-table tbody tr {
    background: var(--white);
    transition: background 0.3s;
}

.journey-table tbody tr:hover {
    background: var(--light);
}

.journey-table tbody tr:last-child td {
    border-bottom: none;
}

.accordion-section {
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .journey-table {
        font-size: 0.9rem;
    }

    .journey-table th,
    .journey-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .journey-table {
        display: block;
        overflow-x: auto;
    }
}

