

/* --- Leadership Coaching - Specific styles for the step-by-step flow --- */
.step-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 40px;
}
.step-number {
    display: inline-block;
    background: var(--dark-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 10px;
}
.step-title {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 1.5rem;
    color: var(--dark-green);
}

/* --- Start Coaching Page Specifics --- */
.pricing-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pricing-card {
    flex: 1;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    min-width: 280px; /* Prevents cards from getting too narrow */
}

.pricing-card h4 {
    margin-bottom: 10px;
    color: var(--dark-green);
    font-family: var(--font-header);
}

.pricing-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.alumni-note {
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    text-align: center;
}
.cancel-steps {
    text-align: left;
    margin: 30px auto;
    padding: 25px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.cancel-steps ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.cancel-steps li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333;
}

.cancel-steps li:last-child {
    margin-bottom: 0;
}

/* --- Form Dropdowns --- */
.contact-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fff;
    appearance: none; /* Removes default browser styling for a cleaner look */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

/* --- Responsive Design --- */
@media (min-width: 769px) {
    .navbar .nav-links {
        display: flex;
    }
}