.cdm-company, .cdm-device {
    margin-bottom: 2em;
}

.cdm-company-logo {
    margin-bottom: 1em;
}

.cdm-company-logo img {
    max-width: 300px;
    height: auto;
}

.cdm-company-gallery, .cdm-device-gallery {
    margin: 1em 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1em;
}

.cdm-company-gallery img, .cdm-device-gallery img {
    max-width: 100%;
    height: auto;
}

.cdm-company-properties, .cdm-device-properties {
    margin-top: 1em;
    padding: 1em;
    background: #f8f8f8;
    border-radius: 4px;
}

.cdm-company-details p, .cdm-device-properties p {
    margin: 0.5em 0;
}

/* Reference Customers */
.cdm-company-reference-customers {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #e5e5e5;
}

.cdm-company-reference-customers h3 {
    margin-bottom: 1em;
    color: #1a4b8c;
}

.reference-customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5em;
}

.reference-customer-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5em;
    text-align: center;
    transition: all 0.3s ease;
}

.reference-customer-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.reference-customer-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.reference-customer-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.reference-customer-item h4 {
    color: #1a4b8c;
    font-size: 1.1em;
    margin: 0 0 0.5em 0;
}

.reference-customer-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    line-height: 1.4;
}