:root {
    --primary: #3d5f9e;
    --primary-light: rgba(61, 95, 158, 0.08);
    --secondary: #1b263b;
    --accent: #415a77;
    --background: #f8f9fa;
    --text: #2c384e;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
}

/* Base styles with mobile-first approach */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.process-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="0" y="0"/><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="50" y="50"/></svg>');
    opacity: 0.3;
}

.process-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.process-header p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.process-header .ref {
    font-size: 0.8rem;
    background-color: rgba(255,255,255,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 0.75rem;
    letter-spacing: 0.5px;
}

.content-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.section-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

.subsection-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1.5rem 0 0.75rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary);
}

ul.process-list {
    padding-left: 1.25rem;
    margin: 1rem 0;
}

ul.process-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

ul.process-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.process-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .process-header {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }

    .process-header h1 {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .content-container {
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Print styles */
@media print {
    .process-header {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none;
        text-align: left;
        padding: 1rem 0;
    }

    .process-header::before {
        display: none;
    }

    .content-card {
        box-shadow: none;
        padding: 0;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }

    .section-title {
        color: #000;
        border-bottom-color: #000;
    }

    .subsection-title {
        border-left-color: #000;
    }
}
