
.brand-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.brand-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}
.brand-logo {
    max-width: 200px;
    margin: 0 auto 30px;
}
.brand-logo img {
    max-width: 100%;
    height: auto;
}
.brand-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}
.brand-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.info-item {
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 5px;
}
.brand-content {
    margin-top: 40px;
}
.brand-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 50px;
}
.brand-services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-card-small {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.service-card-small:hover {
    border-color: #2a5bd7;
    box-shadow: 0 5px 15px rgba(42,91,215,0.1);
    transform: translateY(-5px);
}
.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}
.service-card-small h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}
.service-card-small p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-image {
    text-align: center;
    margin-bottom: 15px;
}
.service-image img {
    max-width: 100%;

    object-fit: contain;
}