/* Solutions Page Styles */
.solutions-grid-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.solution-item {
    display: flex;
    margin-bottom: 100px;
    align-items: center;
}

.solution-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.solution-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.solution-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: none;
    background: none;
}

.solution-number {
    font-size: 24px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 10px;
}

.solution-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0066cc;
}

.tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.solution-features {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    align-items: start;
}

.solution-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: left;
    break-inside: avoid;
}

.solution-features li:before {
    content: "•";
    color: #cc0000;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Partners Section */
.partners-section {
    margin: 100px 0;
    text-align: center;
}

.partner-section-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #cc0000;
    position: relative;
    display: inline-block;
}

.partner-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0066cc;
}

.solution-partners {
    margin: 80px 0;
    text-align: center;
}

.partner-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: #cc0000;
    position: relative;
    display: inline-block;
}

.partner-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #0066cc;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.centered-partners {
    justify-content: center;
}

.partner-logo-large {
    background: white;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo-large img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo-large:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .solution-item {
        flex-direction: column;
    }
    
    .solution-right .solution-image {
        order: -1;
    }
    
    .solution-content, .solution-image {
        width: 100%;
    }
    
    .partner-logo-large {
        width: 180px;
        height: 130px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .solution-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .partner-logo-large {
        width: 150px;
        height: 110px;
        padding: 20px;
    }

    .partner-logo-large img {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        gap: 20px;
    }
    
    .partner-logo-large {
        width: 120px;
        height: 90px;
        padding: 15px;
    }

    .partner-logo-large img {
        max-height: 60px;
    }
}
