/* Branding Section Styles */
.branding-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.brand-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.brand-item:last-child {
    border-bottom: none;
}

.brand-item__image {
    max-width: 200px;
}

.brand-item__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-item__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.brand-item__description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.brand-item__website,
.brand-item__address,
.brand-item__offer {
    font-size: 0.95rem;
    line-height: 1.5;
}

.brand-item__website a {
    color: #fe9f3a;
    text-decoration: none;
}

.brand-item__website a:hover {
    text-decoration: underline;
}

.brand-item__offer {
    background-color: #f8f8f8;
    padding: 1rem;
    border-left: 3px solid #fe9f3a;
}

/* Tablet and above */
@media (min-width: 768px) {
    .brand-item {
        flex-direction: row;
        gap: 2rem;
    }
    
    .brand-item__image {
        flex-shrink: 0;
    }
    
    .brand-item__content {
        flex: 1;
    }
}

