/* Minimal Styles for the App Container */
.urework-app {
    font-family: 'Segoe UI', system-ui, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
    min-height: 600px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.urework-header {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.urework-content {
    padding: 30px;
}

.urework-project-card {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.urework-form-panel {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.urework-form-panel input, 
.urework-form-panel textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

/* --- LANDING PAGE STYLES --- */
.urework-landing-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.ul-hero {
    background: linear-gradient(135deg, #0073aa 0%, #00507a 100%);
    color: white !important;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.ul-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white !important;
    font-weight: 700;
}

.ul-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.ul-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ul-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s;
}

.ul-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.ul-btn-primary {
    background: #e67e22;
    color: white !important;
    border: 2px solid #e67e22;
}

.ul-btn-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.ul-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.ul-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ul-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 5px solid transparent;
    transition: all 0.2s;
}

.ul-card:hover {
    transform: translateY(-5px);
    border-top-color: #0073aa;
}

.ul-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ul-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.ul-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: ul-steps;
}

.ul-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.ul-step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .ul-title { font-size: 2rem; }
    .ul-steps-grid { grid-template-columns: 1fr; }
    .ul-step { border-bottom: 1px solid #eee; margin-bottom: 20px; }
}

/* --- PARTNERS GRID STYLES --- */
.urework-partners-section {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.up-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.up-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #0073aa;
    margin: 10px auto 0;
}

.up-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.up-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.up-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #0073aa;
}

.up-logo-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.up-logo {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Ensure Gravitars are round */
}

.up-name {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.up-badge {
    display: inline-block;
    margin-top: 8px;
    background: #e1f5fe;
    color: #0288d1;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.up-schools-banner {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
}

.up-schools-banner span {
    display: block;
    margin-bottom: 10px;
    font-style: italic;
}

@media (max-width: 600px) {
    .up-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

