/* Solutions Page Styles */
.solution-module {
    padding: 5rem 0;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.solution-content.reverse {
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

.solution-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list, .benefits-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('https://zvnrtemq.manus.space/images/icon-check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('https://zvnrtemq.manus.space/images/icon-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Stats Section */
.stats-section {
    background-color: #0056b3;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.4;
}

/* Resource Hub */
.resource-hub {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.resource-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0056b3;
}

/* Implementation Phases */
.implementation-phases {
    padding: 5rem 0;
}

.phases-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.phase-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.phase-title {
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.phase-description {
    margin-bottom: 1.5rem;
}

.phase-timeline {
    font-weight: 600;
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .solution-content {
        flex-direction: column;
    }
    
    .solution-content.reverse {
        flex-direction: column;
    }
    
    .stats-grid {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex-basis: calc(50% - 1rem);
    }
    
    .phases-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex-basis: 100%;
    }
    
    .resource-card {
        flex-basis: 100%;
    }
}
