/* Placeholder image styles - these would be replaced with actual images */
.placeholder-image {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #2e1a47 0%, #4a90e2 100%);
    z-index: -1;
}

/* Add this to the existing CSS file to ensure images display properly */
.about-image img, 
.service-card img,
.partner-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}
