/* Progress page minimal styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #666;
    background: linear-gradient(135deg, rgba(32, 33, 43, 0.08) 0%, rgba(62, 183, 240, 0.04) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-arrow {
    font-size: 28px;
    color: #999;
    text-decoration: none;
    margin-bottom: 40px;
    display: inline-block;
    transition: color 0.2s ease;
}

.back-arrow:hover {
    color: #555;
}

.content {
    max-width: 100%;
}

h1 {
    color: #444;
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

h2 {
    color: #555;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    font-weight: 500;
}

h3 {
    color: #666;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    color: #666;
}

em {
    color: #888;
    font-style: italic;
}

strong {
    color: #555;
    font-weight: 600;
}

ul, ol {
    margin: 15px 0 15px 20px;
}

li {
    margin-bottom: 8px;
    color: #666;
}

a {
    color: #777;
    text-decoration: none;
}

a:hover {
    color: #444;
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
}
