/* Providers page specific styles */
.providers-page-container {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.providers-hero-section {
    background-color: white;
    padding: 80px 40px;
}

.providers-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.providers-hero-text h1 {
    font-size: 3.5rem;
    color: #1B1B1B;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: bold;
}

.providers-hero-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    margin-bottom: 40px;
    line-height: 1.5;
}

.providers-cta-container {
    margin-top: 40px;
}

.providers-cta-button {
    background-color: #43A047;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.providers-cta-button:hover {
    background-color: #388E3C;
    text-decoration: none;
    color: white;
}

/* Hero Visual */
.providers-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provider-upload-illustration {
    width: 300px;
    height: 400px;
    position: relative;
}

.upload-interface {
    width: 100%;
    height: 100%;
    background-color: #F8F9FA;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.upload-header {
    width: 100%;
    height: 40px;
    background-color: #1E88E5;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.upload-dropzone {
    width: 100%;
    height: 150px;
    border: 2px dashed #1E88E5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #E8F4FD;
}

.upload-icon {
    margin-bottom: 12px;
}

.upload-text {
    color: #1E88E5;
    font-weight: 600;
}

.upload-files {
    space-y: 8px;
}

.file-item {
    background-color: white;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4A4A4A;
    position: relative;
}

.file-item::before {
    content: "📄";
    margin-right: 8px;
}

/* How It Works Section */
.providers-how-it-works-section {
    background-color: #FAFAFA;
    padding: 80px 40px;
}

.providers-how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.providers-how-it-works-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 60px;
    font-weight: bold;
}

.providers-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.workflow-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.workflow-icon {
    margin-bottom: 20px;
}

.workflow-card h3 {
    font-size: 1.3rem;
    color: #1B1B1B;
    margin-bottom: 12px;
    font-weight: 600;
}

.workflow-card p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.5;
}

/* Benefits Section */
.providers-benefits-section {
    background-color: white;
    padding: 80px 40px;
}

.providers-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.providers-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 32px;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "•";
    color: #43A047;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Benefits Visual */
.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.provider-workflow-illustration {
    display: flex;
    align-items: center;
    gap: 20px;
}

.workflow-step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.step-icon-small {
    width: 48px;
    height: 48px;
    background-color: #E8F4FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 500;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #1E88E5;
    font-weight: bold;
}

/* Why It Matters Section */
.providers-why-it-matters-section {
    background-color: #FAFAFA;
    padding: 80px 40px;
}

.providers-why-it-matters-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.providers-why-it-matters-container h2 {
    font-size: 2.5rem;
    color: #1B1B1B;
    margin-bottom: 60px;
    font-weight: bold;
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.matter-item {
    text-align: center;
}

.matter-icon {
    margin-bottom: 20px;
}

.matter-item h3 {
    font-size: 1.2rem;
    color: #1B1B1B;
    line-height: 1.4;
    font-weight: 600;
}

/* Final CTA Section */
.providers-final-cta-section {
    background-color: #43A047;
    padding: 80px 40px;
    text-align: center;
}

.providers-final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.providers-final-cta-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    font-weight: bold;
}

.providers-final-cta-container p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.5;
    opacity: 0.9;
}

.providers-final-cta-button {
    background-color: white;
    color: #43A047;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.providers-final-cta-button:hover {
    background-color: #F5F5F5;
    text-decoration: none;
    color: #43A047;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .providers-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .providers-workflow-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .providers-benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .matters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .providers-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .providers-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .providers-how-it-works-container h2,
    .providers-benefits-text h2,
    .providers-why-it-matters-container h2,
    .providers-final-cta-container h2 {
        font-size: 2rem;
    }
    
    .provider-upload-illustration {
        width: 250px;
        height: 320px;
    }
    
    .provider-workflow-illustration {
        flex-direction: column;
        gap: 30px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .providers-hero-section,
    .providers-how-it-works-section,
    .providers-benefits-section,
    .providers-why-it-matters-section,
    .providers-final-cta-section {
        padding: 60px 20px;
    }
    
    .providers-hero-text h1 {
        font-size: 2rem;
    }
    
    .workflow-card {
        padding: 30px 20px;
    }
    
    .provider-upload-illustration {
        width: 200px;
        height: 280px;
    }
}
