/* Only the CSS variables we actually need */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #f39c12;
    --light: #B8C2D0;
    --text: #2D3748;
    --light-text: #A0AEC0;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
}

.container {
    max-width: 800px;
}

/* Page title styles */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 75px;
}

.page-title h1 {
    font-size: 2.5rem;
    font-variant: small-caps;
    font-weight: bold;
    color: #A0AEC0;
    margin-bottom: 15px;
}

.page-title p {
    color: #A0AEC0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main content styles */
.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}
    
.step-header {
    padding: 1.5rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: white;
}

.step-number {
    background-color: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.step-content {
    padding: 1.5rem;
}

.step-content ul {
    list-style-type: none;
    padding-left: 0.5rem;
}

.step-content li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--secondary);
}

/* Remove the bullet points */
.step-content li::before {
    content: none;
}

.highlight {
    font-weight: 600;
    color: Blue;
}

.important-note {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0 4px 4px 0;
}

.note-box {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.note-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.2rem;
}

.note-title svg {
    margin-right: 0.5rem;
}

/* Link styling */
.step-content a {
    color: Blue;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.step-content a:hover {
    text-decoration: bold;
}

/* Media queries */
@media (max-width: 600px) {
    .step-header {
        padding: 1rem;
    }
    
    .step-content {
        padding: 1.2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
}