/* Admission Procedure Styles */

.admission-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.admission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.admission-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.admission-header .subtitle {
    font-style: italic;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.admission-header .separator {
    width: 50%;
    height: 1px;
    margin: 0 auto;
    background-color: rgba(180, 117, 0, 0.3);
}

.introduction {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-number {
    background-color: #e99700;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-title-container {
    display: flex;
    align-items: center;
}

.step-icon {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.step-title-container h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e99700;
    margin: 0;
}

.step-content p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    background-color: #fff4e5;
    padding: 2rem;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin-top: 3rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #e99700;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b47500;
} 